toBeBytes method

List<int> toBeBytes({
  1. int? length,
  2. bool sign = false,
})

Implementation

List<int> toBeBytes({int? length, bool sign = false}) => BigintUtils.toBytes(
  this,
  length: length,
  byteOrder: Endian.big,
  sign: sign,
);