Int128 constructor

Int128(
  1. int value
)

Builds from a plain Dart int (positive or negative).

Implementation

factory Int128(int value) => Int128.fromBigInt(BigInt.from(value));