updateMap method
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);
}