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