GNTextButton constructor

const GNTextButton({
  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,
})

Implementation

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