DocumentPatch constructor

DocumentPatch({
  1. List<Map<String, dynamic>>? body,
  2. DocumentPatchFile? file,
  3. DocumentPatchPermission? permission,
  4. String? text,
  5. List<String>? tags,
})

Returns a new DocumentPatch instance.

Implementation

DocumentPatch({
  this.body,
  this.file,
  this.permission,
  this.text,
  this.tags,
});