set method

Future set(
  1. dynamic value
)

Sets data at actual database location to provided value. Overwrites any existing data at actual location and all child locations.

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

Implementation

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