InstallState constructor

const InstallState({
  1. required InstallPhase phase,
  2. String? errorMessage,
  3. String? progressMessage,
})

Implementation

const InstallState({
  required this.phase,
  this.errorMessage,
  this.progressMessage,
});