ByteWord.fromInt constructor

ByteWord.fromInt(
  1. int value
)

Implementation

ByteWord.fromInt(int value) {
  _high = Byte(value >> 8);
  _low = Byte(value);
}