SystemDashboardContents constructor

const SystemDashboardContents({
  1. Key? key,
  2. required SystemData data,
  3. required bool isBluetoothConnected,
  4. RefreshCallback? onRefresh,
  5. VoidCallback? onConnectAnotherDevice,
  6. VoidCallback? onFirmwareView,
  7. VoidCallback? onGeneratorConfigure,
  8. VoidCallback? onGeneratorBluetooth,
  9. void onAtsConfigure(
    1. String atsSerialNumber
    )?,
  10. void onAtsBluetooth(
    1. String atsSerialNumber
    )?,
  11. VoidCallback? onConnectivityConfigure,
  12. VoidCallback? onExerciseEdit,
  13. VoidCallback? onExercisePlay,
  14. Future<void> onChecklistAction(
    1. InstallationChecklistStep step
    )?,
  15. Future<void> onChecklistSkip(
    1. InstallationChecklistStep step
    )?,
})

Implementation

const SystemDashboardContents({
  super.key,
  required this.data,
  required this.isBluetoothConnected,
  this.onRefresh,
  this.onConnectAnotherDevice,
  this.onFirmwareView,
  this.onGeneratorConfigure,
  this.onGeneratorBluetooth,
  this.onAtsConfigure,
  this.onAtsBluetooth,
  this.onConnectivityConfigure,
  this.onExerciseEdit,
  this.onExercisePlay,
  this.onChecklistAction,
  this.onChecklistSkip,
});