Document constructor

Document({
  1. String? content,
  2. String? gcsContentUri,
  3. String? languageCode,
  4. String? type,
})

Implementation

Document({
  this.content,
  this.gcsContentUri,
  this.languageCode,
  this.type,
});