SaveButton constructor

const SaveButton({
  1. Key? key,
  2. required void onPressed()?,
})

Creates a SaveButton.

Implementation

const SaveButton({
  Key? key,
  required this.onPressed,
}) : super(key: key);