NiceMaintenanceState constructor

const NiceMaintenanceState({
  1. Key? key,
  2. String? title,
  3. String? message,
  4. DateTime? expectedEndTime,
  5. Widget? action,
  6. IconData? icon,
  7. Color? color,
})

Implementation

const NiceMaintenanceState({
  super.key,
  this.title,
  this.message,
  this.expectedEndTime,
  this.action,
  this.icon,
  this.color,
});