setWithPriority method

Future<void> setWithPriority(
  1. Object? value,
  2. Object? priority
)

Ensures the data at this location is set with a priority 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> setWithPriority(Object? value, Object? priority) {
  throw UnimplementedError('setWithPriority() not implemented');
}