CardSettingsButton constructor

CardSettingsButton({
  1. String label = 'Label',
  2. required VoidCallback onPressed,
  3. bool visible = true,
  4. Color? backgroundColor,
  5. Color? textColor,
  6. bool enabled = true,
  7. double bottomSpacing = 0.0,
  8. bool isDestructive = false,
  9. bool? showMaterialonIOS,
})

Implementation

CardSettingsButton({
  this.label = 'Label',
  required this.onPressed,
  this.visible = true,
  this.backgroundColor,
  this.textColor,
  this.enabled = true,
  this.bottomSpacing = 0.0,
  this.isDestructive = false,
  this.showMaterialonIOS,
});