put method

Future<List<V>> put (
  1. DatabaseClient client,
  2. List<V> values,
  3. {bool merge}
)

Save multiple records, creating the one needed.

if merge is true and the field exists, data is merged.

The list of values must match the list of keys.

Returns the updated values.

Implementation

Future<List<V>> put(DatabaseClient client, List<V> values, {bool merge});