GNSaveButton constructor

const GNSaveButton({
  1. Key? key,
  2. required String title,
  3. required dynamic onPressed()?,
  4. Color? backgroundColor,
  5. Color? fontColor,
  6. EdgeInsets? padding,
  7. double? fontSize,
  8. double? elevation,
  9. OutlinedBorder? shape,
  10. double? minHeight,
  11. double? minWidth,
  12. VisualDensity? visualDensity,
})

Implementation

const GNSaveButton(
    {super.key,
    required this.title,
    required this.onPressed,
    this.backgroundColor,
    this.fontColor,
    this.padding,
    this.fontSize,
    this.elevation,
    this.shape,
    this.minHeight,
    this.minWidth,
    this.visualDensity});