bytes property
Returns the current bytes.
Implementation
List<int> get bytes => <int>[
(_a >> 24) & 0xff,
(_a >> 16) & 0xff,
(_a >> 8) & 0xff,
_a & 0xff,
(_b >> 24) & 0xff,
(_b >> 16) & 0xff,
(_b >> 8) & 0xff,
_b & 0xff,
(_c >> 24) & 0xff,
(_c >> 16) & 0xff,
(_c >> 8) & 0xff,
_c & 0xff,
(_d >> 24) & 0xff,
(_d >> 16) & 0xff,
(_d >> 8) & 0xff,
_d & 0xff,
];