Document constructor

Document({
  1. Body? body,
  2. String? documentId,
  3. DocumentStyle? documentStyle,
  4. Map<String, Footer>? footers,
  5. Map<String, Footnote>? footnotes,
  6. Map<String, Header>? headers,
  7. Map<String, InlineObject>? inlineObjects,
  8. Map<String, List>? lists,
  9. Map<String, NamedRanges>? namedRanges,
  10. NamedStyles? namedStyles,
  11. Map<String, PositionedObject>? positionedObjects,
  12. String? revisionId,
  13. Map<String, SuggestedDocumentStyle>? suggestedDocumentStyleChanges,
  14. Map<String, SuggestedNamedStyles>? suggestedNamedStylesChanges,
  15. String? suggestionsViewMode,
  16. String? title,
})

Implementation

Document({
  this.body,
  this.documentId,
  this.documentStyle,
  this.footers,
  this.footnotes,
  this.headers,
  this.inlineObjects,
  this.lists,
  this.namedRanges,
  this.namedStyles,
  this.positionedObjects,
  this.revisionId,
  this.suggestedDocumentStyleChanges,
  this.suggestedNamedStylesChanges,
  this.suggestionsViewMode,
  this.title,
});