TypeUint constructor

TypeUint(
  1. int size
)

Implementation

factory TypeUint(int size) {
  if (size < 8 || size > 512 || size % 8 != 0) {
    throw ArgumentError(
        'uint initialize failure: bitSize should be in [8, 512] and bitSize '
        'mod 8 == 0');
  }
  return TypeUint._internal(size);
}