AnnotationSpec constructor

AnnotationSpec({
  1. String name = '',
  2. required String displayName,
  3. Timestamp? createTime,
  4. Timestamp? updateTime,
  5. String etag = '',
})

Implementation

AnnotationSpec({
  this.name = '',
  required this.displayName,
  this.createTime,
  this.updateTime,
  this.etag = '',
}) : super(fullyQualifiedName);