ByteDoubleWord.fromInt constructor
ByteDoubleWord.fromInt(
- int value
Implementation
ByteDoubleWord.fromInt(int value) {
_four = Byte(value >> 24);
_three = Byte(value >> 16);
_two = Byte(value >> 8);
_one = Byte(value);
}