runInsert abstract method

Future<int> runInsert(
  1. String statement,
  2. List<Object?> args
)

Runs an insert statement with the given variables. Returns the row id or the auto_increment id of the inserted row.

Implementation

Future<int> runInsert(String statement, List<Object?> args);