commit method

void commit()

Implementation

void commit() {
  for (final operation in _operations) {
    operation();
  }
}