setWithPriority method

Future setWithPriority(
  1. dynamic value,
  2. dynamic priority
)

Ensures the data for actual location is set to the specified value and priority when the client is disconnected.

The value must be a Dart basic type or the error is thrown. The priority must be a String, num or null, or the error is thrown.

Implementation

Future setWithPriority(value, priority) =>
    handleThenable(jsObject.setWithPriority(jsify(value), priority));