Metadata constructor

Metadata({
  1. String? createTime,
  2. String? endTime,
  3. List<Event>? events,
  4. Map<String, String>? labels,
  5. Pipeline? pipeline,
  6. String? pubSubTopic,
  7. String? startTime,
})

Implementation

Metadata({
  this.createTime,
  this.endTime,
  this.events,
  this.labels,
  this.pipeline,
  this.pubSubTopic,
  this.startTime,
});