MyFlatButton constructor
const
MyFlatButton({
- Key? key,
- required String text,
- required VoidCallback? onPressed,
- Color? color,
- double? width,
Implementation
const MyFlatButton({
super.key,
required this.text,
required this.onPressed,
this.color,
this.width,
});