byteLength property

int get byteLength

Returns the minimum number of bytes required to store this big integer.

Implementation

int get byteLength => (bitLength + 7) >> 3;