customStatement method
Implementation
@override
Future<void> customStatement(
String query, {
List<Variable<Object>>? variables,
}) async {
try {
await _database.customStatement(query);
} catch (e) {
throw DatabaseBridgeException(error: e);
}
}