Bytes method

List<int> Bytes()

Bytes returns the canonical 32-byte little-endian encoding of v.

Implementation

// ignore: non_constant_identifier_names
List<int> Bytes() {
  // This function is outlined to create a Uint8List inline in the caller
  // rather than allocate on the heap.
  final List<int> out = List<int>.filled(32, 0);
  _bytes(out);
  return out;
}