CommandResult constructor

const CommandResult({
  1. required String command,
  2. required String stage,
  3. required int exitCode,
  4. required CommandStatus status,
  5. required bool eligible,
  6. List<Diagnostic> diagnostics = const [],
  7. Map<String, Object?> details = const {},
})

Implementation

const CommandResult({
  required this.command,
  required this.stage,
  required this.exitCode,
  required this.status,
  required this.eligible,
  this.diagnostics = const [],
  this.details = const {},
});