set method

Future<void> set(
  1. Map<String, dynamic> data, [
  2. SetOptions? options
])

Writes to the document referred to by this DocumentReferencePlatform.

If the document does not yet exist, it will be created.

If merge is true, the provided data will be merged into an existing document instead of overwriting.

Implementation

Future<void> set(Map<String, dynamic> data, [SetOptions? options]) {
  throw UnimplementedError('set() is not implemented');
}