SolUint constructor

SolUint(
  1. int bits
)

Implementation

SolUint(this.bits) {
  if (bits <= 0 || bits > 256 || bits % 8 != 0) {
    throw ArgumentError('uint bits must be a multiple of 8 in [8..256], got $bits');
  }
}