CockpitContextBundle constructor
CockpitContextBundle({
- required CockpitRunManifest manifest,
- required CockpitEnvironment environment,
- List<
CockpitStepRecord> steps = const [], - List<
CockpitObservation> observations = const [], - required String acceptanceMarkdown,
- required Map<
String, Object?> handoff, - Map<
String, Object?> delivery = const <String, Object?>{},
Creates a CockpitContextBundle.
Implementation
CockpitContextBundle({
required this.manifest,
required this.environment,
List<CockpitStepRecord> steps = const [],
List<CockpitObservation> observations = const [],
required this.acceptanceMarkdown,
required Map<String, Object?> handoff,
Map<String, Object?> delivery = const <String, Object?>{},
}) : steps = List.unmodifiable(steps),
observations = List.unmodifiable(observations),
handoff = Map.unmodifiable(handoff),
delivery = Map.unmodifiable(delivery);