updateChildren function

Future<void> updateChildren(
  1. String path,
  2. Map<String, Object?> value
)

Writes the named children of value and leaves the rest alone.

Not setValue with a partial map, which would delete everything the map does not mention.

Implementation

Future<void> updateChildren(String path, Map<String, Object?> value) =>
    _withCbor(path, value, fdbDbUpdate, 'update');