Event constructor

const Event({
  1. String? action,
  2. String? apiVersion,
  3. int? deprecatedCount,
  4. DateTime? deprecatedFirstTimestamp,
  5. DateTime? deprecatedLastTimestamp,
  6. EventSource? deprecatedSource,
  7. required String eventTime,
  8. String? kind,
  9. ObjectMeta? metadata,
  10. String? note,
  11. String? reason,
  12. ObjectReference? regarding,
  13. ObjectReference? related,
  14. String? reportingController,
  15. String? reportingInstance,
  16. EventSeries? series,
  17. String? type,
})

Default constructor.

Implementation

const Event({
  this.action,
  this.apiVersion,
  this.deprecatedCount,
  this.deprecatedFirstTimestamp,
  this.deprecatedLastTimestamp,
  this.deprecatedSource,
  required this.eventTime,
  this.kind,
  this.metadata,
  this.note,
  this.reason,
  this.regarding,
  this.related,
  this.reportingController,
  this.reportingInstance,
  this.series,
  this.type,
});