pushUint24 method

void pushUint24(
  1. int value
)

Implementation

void pushUint24(int value) {
  pushUint8(value & 0xFF);
  pushUint8((value >> 8) & 0xFF);
  pushUint8((value >> 16) & 0xFF);
  //  ..[0] = (value >> 16) & 0xFF
  //     ..[1] = (value >> 8) & 0xFF
  //     ..[2] = value & 0xFF;
}