deleteById method

Future deleteById({
  1. required String table,
  2. required int rawId,
})

Implementation

Future deleteById({required String table, required int rawId}) async {
  return rawDelete('delete $table where rawid=$rawId');
}