update method

Future<List<V>> update (
  1. DatabaseClient client,
  2. List<V> values
)

Update multiple records.

if value is a map, keys with dot values refer to a path in the map, unless the key is specifically escaped.

The list of values must match the list of keys.

Returns the list of updated values, a value being null if the record does not exist.

Implementation

Future<List<V>> update(DatabaseClient client, List<V> values);