updateMap method

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

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