increment method

void increment()

Implementation

void increment() {
  _ssc += BigInt.from(1);
  if (_ssc.bitLength > bitSize) {
    _ssc = BigInt.from(0);
  }
}