CollectdPayload constructor

CollectdPayload({
  1. String? endTime,
  2. Map<String, TypedValue>? metadata,
  3. String? plugin,
  4. String? pluginInstance,
  5. String? startTime,
  6. String? type,
  7. String? typeInstance,
  8. List<CollectdValue>? values,
})

Implementation

CollectdPayload({
  this.endTime,
  this.metadata,
  this.plugin,
  this.pluginInstance,
  this.startTime,
  this.type,
  this.typeInstance,
  this.values,
});