insert method
Insert a new record from map into table.
Returns the new row id.
Implementation
Future<int> insert(Map<String, dynamic> map, String table,
{String? dbName}) async {
return _insertOrUpdate(map, table, dbName: dbName);
}
Insert a new record from map into table.
Returns the new row id.
Future<int> insert(Map<String, dynamic> map, String table,
{String? dbName}) async {
return _insertOrUpdate(map, table, dbName: dbName);
}