FormButton constructor

const FormButton({
  1. Key? key,
  2. required void onPressed()?,
  3. required String label,
  4. Color? backgroundColor,
})

Implementation

const FormButton({
  super.key,
  required this.onPressed,
  required this.label,
  this.backgroundColor,
});