uInt32ToBytes method

Uint8List uInt32ToBytes()

Converts this as a Uint32 to bytes (Uint8List).

Implementation

Uint8List uInt32ToBytes() =>
    Uint8List(4)..asByteData().setUint32(0, this, Endian.big);