MyButton constructor
const
MyButton({
- Key? key,
- String? text = '',
- @required VoidCallback? onPressed,
Implementation
const MyButton({
super.key,
this.text = '',
@required this.onPressed,
});