TriposFirmwareUpdatePresentation constructor

const TriposFirmwareUpdatePresentation({
  1. required FirmwareUpdateEvent event,
  2. required String title,
  3. required String message,
  4. required bool isBlocking,
  5. double? progressPercent,
  6. bool isDeterminate = false,
  7. bool isSuccess = false,
  8. bool isFailure = false,
})

Implementation

const TriposFirmwareUpdatePresentation({
  required this.event,
  required this.title,
  required this.message,
  required this.isBlocking,
  this.progressPercent,
  this.isDeterminate = false,
  this.isSuccess = false,
  this.isFailure = false,
});