rollback method

Future rollback()

Rolls this transaction back.

Implementation

Future rollback() {
  _checkSealed(changeState: _transactionRolledBack, allowFailed: true);
  return db.datastore.rollback(_datastoreTransaction);
}