ByteWord constructor

ByteWord({
  1. required Byte high,
  2. required Byte low,
})

Implementation

ByteWord({required Byte high, required Byte low}) {
  _high = high;
  _low = low;
}