update method

Future<int> update(
  1. String table,
  2. Map<String, dynamic> data, {
  3. String? where,
  4. List? whereArgs,
})

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.');
}