runCustom method

  1. @override
Future<void> runCustom(
  1. String statement,
  2. [List<Object?>? args]
)
override

Runs a custom SQL statement without any variables. The result of that statement will be ignored.

Implementation

@override
Future<void> runCustom(String statement, [List<Object?>? args]) =>
    _delegate.runCustom(statement, args);