BootstrapStep constructor

BootstrapStep({
  1. required String id,
  2. required String name,
  3. BootstrapStepStatus status = BootstrapStepStatus.pending,
  4. Duration duration = Duration.zero,
  5. String? error,
  6. String? warning,
})

Implementation

BootstrapStep({
  required this.id,
  required this.name,
  this.status = BootstrapStepStatus.pending,
  this.duration = Duration.zero,
  this.error,
  this.warning,
});