update method

Future<void> update(
  1. Map<String, Object?> value
)

Writes multiple values at this location when the client is disconnected (due to closing the browser, navigating to a new page, or network issues).

Implementation

Future<void> update(Map<String, Object?> value) {
  return _delegate.update(value);
}