deleteRec method

Future<int> deleteRec(
  1. String table, {
  2. String? where,
  3. List? whereArgs,
})

Delete the specified record by using a where clause from the specified data table

Implementation

Future<int> deleteRec(String table,
    {String? where, List<dynamic>? whereArgs}) {
  throw UnimplementedError();
}