update method
Update data in the database
Implementation
Future<int> update(
String table,
Map<String, dynamic> data, {
String? where,
List<dynamic>? whereArgs,
}) {
throw UnimplementedError('update() has not been implemented.');
}
Update data in the database
Future<int> update(
String table,
Map<String, dynamic> data, {
String? where,
List<dynamic>? whereArgs,
}) {
throw UnimplementedError('update() has not been implemented.');
}