BootstrapResult constructor

const BootstrapResult({
  1. required BootstrapResultStatus status,
  2. required List<BootstrapStep> steps,
  3. List<String> warnings = const [],
  4. List<String> errors = const [],
  5. ProjectInfo? projectInfo,
  6. List<MemoryFile> memoryFiles = const [],
  7. Duration totalDuration = Duration.zero,
  8. String? shell,
  9. Map<String, dynamic> settings = const {},
})

Implementation

const BootstrapResult({
  required this.status,
  required this.steps,
  this.warnings = const [],
  this.errors = const [],
  this.projectInfo,
  this.memoryFiles = const [],
  this.totalDuration = Duration.zero,
  this.shell,
  this.settings = const {},
});