updateMap method

Future<int?> updateMap(
  1. TableName table,
  2. Map<String, dynamic> values,
  3. String where
)

Update a new record using a map and a where condition.

This returns the number of rows affected.

Implementation

Future<int?> updateMap(
    TableName table, Map<String, dynamic> values, String where) async {
  return await _postgresDb.updateMap(table, values, where);
}