bigIntToBytes property

Uint8List get bigIntToBytes

Implementation

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