FlatButton constructor

const FlatButton({
  1. Key? key,
  2. required String text,
  3. required VoidCallback onPressed,
  4. Color baseColor = Colors.teal,
})

Implementation

const FlatButton({
  super.key,
  required this.text,
  required this.onPressed,
  this.baseColor = Colors.teal,
});