writeTxn<T> abstract method

Future<T> writeTxn<T>(
  1. Future<T> callback(), {
  2. bool silent = false,
})

Executes an asynchronous read-write transaction.

If silent is true, watchers are not notified about changes in this transaction.

Implementation

Future<T> writeTxn<T>(Future<T> Function() callback, {bool silent = false});