GNTextButton constructor
const
GNTextButton({
- Key? key,
- required String title,
- required dynamic onPressed()?,
- Color? backgroundColor,
- Color? fontColor,
- EdgeInsets? padding,
- double? fontSize,
- double? elevation,
- 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});