StartupState constructor

const StartupState({
  1. required StartupStatus status,
  2. int completedCount = 0,
  3. int totalCount = 0,
  4. String currentLabel = '',
  5. double? subTaskFraction,
  6. JailbreakAppException? jailbreakException,
  7. ForceUpdateException? forceUpdateException,
  8. String? errorMessage,
})

Implementation

const StartupState({
  required this.status,
  this.completedCount = 0,
  this.totalCount = 0,
  this.currentLabel = '',
  this.subTaskFraction,
  this.jailbreakException,
  this.forceUpdateException,
  this.errorMessage,
});