transaction method
Future<Transaction>
transaction({
- TransactionBehavior behavior = turso.TransactionBehavior.deferred,
Implementation
Future<Transaction> transaction({
turso.TransactionBehavior behavior = turso.TransactionBehavior.deferred,
}) async {
final txId = await _sendCmd<int>((port) => _ConnTxCmd(port, behavior));
return Transaction._(_commandPort, txId);
}