ContainerStatus constructor

const ContainerStatus({
  1. Map<String, String>? allocatedResources,
  2. String? containerID,
  3. required String image,
  4. required String imageID,
  5. ContainerState? lastState,
  6. required String name,
  7. required bool ready,
  8. ResourceRequirements? resources,
  9. required int restartCount,
  10. bool? started,
  11. ContainerState? state,
})

Default constructor.

Implementation

const ContainerStatus({
  this.allocatedResources,
  this.containerID,
  required this.image,
  required this.imageID,
  this.lastState,
  required this.name,
  required this.ready,
  this.resources,
  required this.restartCount,
  this.started,
  this.state,
});