deleteField method

Delete the key field.

Execute save to apply the changes.

Implementation

FirestoreDynamicDocumentModel deleteField(String key) {
  this[key] = FieldValue.delete();
  return this;
}