GNSaveButton constructor

const GNSaveButton({
  1. Key? key,
  2. 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,
  13. Widget? titleWidget,
})

Implementation

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