ByteDoubleWord.fromInt constructor

ByteDoubleWord.fromInt(
  1. int value
)

Implementation

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