startTransaction method
Start a new database transaction
Implementation
@override
Future<Transaction> startTransaction([IsolationLevel? isolationLevel]) async {
// SQLite doesn't support different isolation levels in the same way
// It uses a single serializable mode
return SQLiteTransaction._start(_database);
}