FxBigInt extension

on

Properties

byteLength int
The minimum number of bytes required to store this big integer.
no setter

Methods

toUint8List([int? length]) Uint8List
Converts this BigInt into a Uint8List of size length. If length is omitted, the minimum number of bytes required to store this big integer value is used.

Static Methods

fromUint8List(Iterable<int> bytes, [Endian endian = Endian.little]) BigInt
Creates a BigInt from an array of bytes.