runInsert method
Runs an insert statement with the given variables. Returns the row id or the auto_increment id of the inserted row.
Implementation
@override
Future<int> runInsert(String statement, List<Object?> args) =>
_delegate.runInsert(statement, args);