execute method

void execute(
  1. String sql, [
  2. List<Object?>? arguments
])

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);
}