runTxn<T> method

Future<T> runTxn<T>(
  1. T func()
)

Initiate a Database transaction All sequences are rolled back in one among them fails.

Implementation

Future<T> runTxn<T>(T Function() func) {
  throw UnimplementedError();
}