Document constructor

Document({
  1. String name = '',
  2. String displayName = '',
  3. List<CustomMetadata> customMetadata = const [],
  4. Timestamp? updateTime,
  5. Timestamp? createTime,
})

Implementation

Document({
  this.name = '',
  this.displayName = '',
  this.customMetadata = const [],
  this.updateTime,
  this.createTime,
}) : super(fullyQualifiedName);