SMaintenanceButton constructor

const SMaintenanceButton({
  1. Key? key,
  2. VoidCallback? onTap,
  3. bool isOnMaintenance = false,
  4. Color? activeColor,
  5. Color? nonActiveColor,
})

Implementation

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