SMaintenanceButton constructor

const SMaintenanceButton({
  1. Key? key,
  2. VoidCallback? onTap,
  3. bool isOnMaintenance = false,
  4. Color? activeColor,
  5. Color? nonActiveColor,
  6. Widget? icon,
  7. bool showConfirmation = false,
  8. String? confirmationMessage,
})

Implementation

const SMaintenanceButton({
  super.key,
  this.onTap,
  this.isOnMaintenance = false,
  this.activeColor,
  this.nonActiveColor,
  this.icon,
  this.showConfirmation = false,
  this.confirmationMessage,
});