set method

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

Writes to the document referred to by document.

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

If SetOptions are provided, the data will be merged into an existing document instead of overwriting.

Implementation

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