beginWriteAsync method
Asynchronously begins a write transaction for this Realm. You can supply a CancellationToken to cancel the operation.
Implementation
Future<Transaction> beginWriteAsync([CancellationToken? cancellationToken]) async {
await handle.beginWriteAsync(cancellationToken);
return Transaction._(this);
}