set method
Create or update a document. In the case of an update, any fields not referenced in the payload will be deleted.
Implementation
Future<void> set(Map<String, dynamic> map) async =>
_gateway.updateDocument(fullPath, _encodeMap(map), false);