Transaction constructor

Transaction(
  1. Firestore _firestore,
  2. String _transactionId
)

Implementation

Transaction(this._firestore, this._transactionId) {
  _transactionWriteBatch = WriteBatch._(_firestore);
}