writeTxnSync<T> abstract method

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

Executes a synchronous read-write transaction.

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

Implementation

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