bigIntToBytes property
Implementation
Uint8List get bigIntToBytes {
assert(this >= BigInt.zero, "BigInt must be positive");
return p_utils.encodeBigIntAsUnsigned(this);
}
Uint8List get bigIntToBytes {
assert(this >= BigInt.zero, "BigInt must be positive");
return p_utils.encodeBigIntAsUnsigned(this);
}