MaterialRoundedButton constructor

const MaterialRoundedButton({
  1. required String title,
  2. double fontSize = 16,
  3. Icon? icon,
  4. double elevation = 0.0,
  5. Color? backgroundColor,
  6. double radius = 50.0,
  7. void onPress()?,
  8. Key? key,
})

Implementation

const MaterialRoundedButton({
  required this.title,
  this.fontSize=16,
  this.icon,
  this.elevation=0.0,
  this.backgroundColor,
  this.radius=50.0,
  this.onPress,
  Key ? key}) : super(key: key);