Document constructor

Document({
  1. Document_Type type = Document_Type.$default,
  2. String? content,
  3. String? gcsContentUri,
  4. String languageCode = '',
})

Implementation

Document({
  this.type = Document_Type.$default,
  this.content,
  this.gcsContentUri,
  this.languageCode = '',
}) : super(fullyQualifiedName);