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

Implementation

Future<void> set(Object? value) {
  throw UnimplementedError('set() not implemented');
}