Document constructor

Document({
  1. String? createTime,
  2. Map<String, Value>? fields,
  3. String? name,
  4. String? updateTime,
})

Implementation

Document({
  this.createTime,
  this.fields,
  this.name,
  this.updateTime,
});