lowByte function

int lowByte(
  1. int value
)

Extract the low byte of a 16-bit value.

Implementation

int lowByte(int value) => value & 0x00FF;