updateMap method

Future<QueryResult> updateMap(
  1. Object table, {
  2. required Map<Object, dynamic> values,
  3. required Where where,
  4. Returning? returning,
})

Implementation

Future<QueryResult> updateMap(Object table, {required Map<Object, dynamic> values, required Where where, Returning? returning}) async {
  return await update(table, values: values.entries, where: where, returning: returning);
}