Execute method

Future<void> Execute(
  1. String sql
)

Execute Function For Execute Any Sql Command

Execute Function will generate a Late Exception Because it's need to OpenBatch To called

batch.Execute("INSERT INTO Todos VALUES (...)");

Implementation

Future<void> Execute(String sql) async {
  batch.execute(sql);
}