Annotation constructor

Annotation({
  1. String name = '',
  2. required String payloadSchemaUri,
  3. required Value? payload,
  4. Timestamp? createTime,
  5. Timestamp? updateTime,
  6. String etag = '',
  7. UserActionReference? annotationSource,
  8. Map<String, String> labels = const {},
})

Implementation

Annotation({
  this.name = '',
  required this.payloadSchemaUri,
  required this.payload,
  this.createTime,
  this.updateTime,
  this.etag = '',
  this.annotationSource,
  this.labels = const {},
}) : super(fullyQualifiedName);