pushUint24 method
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;
}