set method

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

Writes to the document referred to by the provided documentPath. If the document does not exist yet, it will be created. If you pass SetOptions, the provided data can be merged into the existing document.

Implementation

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