toUint8List32Reversed method

Uint8List toUint8List32Reversed()

Same as toUint8List32, but with bytes in reversed order.

Implementation

Uint8List toUint8List32Reversed() {
  var bs = Uint8List(4);
  var data = bs.asByteData();
  data.setUint32(0, this, Endian.little);
  return bs;
}