TombButtonModel constructor

TombButtonModel({
  1. required String text,
  2. Color backgroundColor = Colors.blue,
  3. double fontSize = 16.0,
  4. double width = 150.0,
  5. double height = 50.0,
  6. required VoidCallback onPressed,
})

Implementation

TombButtonModel({
  required this.text,
  this.backgroundColor = Colors.blue,
  this.fontSize = 16.0,
  this.width = 150.0,
  this.height = 50.0,
  required this.onPressed,
});