set method

Future<void> set(
  1. Object? value
)

Ensures the data at this location is set to the specified value when the client is disconnected (due to closing the browser, navigating to a new page, or network issues).

Implementation

Future<void> set(Object? value) {
  return _delegate.set(value);
}