MyButton constructor

const MyButton({
  1. Key? key,
  2. String? text = '',
  3. @required VoidCallback? onPressed,
})

Implementation

const MyButton({
  super.key,
  this.text = '',
  @required this.onPressed,
});