set method

Future set(
  1. dynamic value
)

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

The value must be a Dart basic type or the error is thrown.

Implementation

Future set(value) => handleThenable(jsObject.set(jsify(value)));