execute method
This executes raw sql on the batch
This is useful for things like CREATE TABLE
or DROP TABLE
It does not update the table updates
Implementation
void execute(String sql, [List<Object?>? arguments]) async {
batch.execute(sql, arguments);
}