Condition constructor

const Condition({
  1. required DateTime lastTransitionTime,
  2. required String message,
  3. int? observedGeneration,
  4. required String reason,
  5. required String status,
  6. required String type,
})

The main constructor.

Implementation

const Condition({
  required this.lastTransitionTime,
  required this.message,
  this.observedGeneration,
  required this.reason,
  required this.status,
  required this.type,
});