Uint128 constructor

Uint128(
  1. int value
)

Builds from a plain Dart int. Must be non-negative (same constraint as Uint64.new).

Implementation

factory Uint128(int value) => Uint128._(Uint64.zero, Uint64(value));