deleteRecord method
Implementation
@override
Future<void> deleteRecord(String tableName, dynamic id) async {
final accessor = accessors[tableName];
if (accessor == null) {
throw Exception('Collection $tableName not found in accessors.');
}
await accessor.deleteRecord(id);
}