Event constructor

const Event({
  1. String? action,
  2. String? apiVersion,
  3. int? count,
  4. String? eventTime,
  5. DateTime? firstTimestamp,
  6. required ObjectReference involvedObject,
  7. String? kind,
  8. DateTime? lastTimestamp,
  9. String? message,
  10. required ObjectMeta metadata,
  11. String? reason,
  12. ObjectReference? related,
  13. String? reportingComponent,
  14. String? reportingInstance,
  15. EventSeries? series,
  16. EventSource? source,
  17. String? type,
})

Default constructor.

Implementation

const Event({
  this.action,
  this.apiVersion,
  this.count,
  this.eventTime,
  this.firstTimestamp,
  required this.involvedObject,
  this.kind,
  this.lastTimestamp,
  this.message,
  required this.metadata,
  this.reason,
  this.related,
  this.reportingComponent,
  this.reportingInstance,
  this.series,
  this.source,
  this.type,
});