intsToByteHighAndLow static method

int intsToByteHighAndLow(
  1. int highValue,
  2. int lowValue
)

Implementation

static int intsToByteHighAndLow(int highValue, int lowValue) =>
    ((highValue << 4) | lowValue) & 0xFF;