MyOutlinedButton constructor
const
MyOutlinedButton({
- Key? key,
- required String text,
- required VoidCallback? onPressed,
- double? width,
- double? height,
- Widget? icon,
- Color? color,
- Color? backgroundColor,
- EdgeInsetsGeometry? padding,
Implementation
const MyOutlinedButton({
super.key,
required this.text,
required this.onPressed,
this.width,
this.height,
this.icon,
this.color,
this.backgroundColor,
this.padding,
});