pushUint32Be method
Append a 32-bit integer value in big-endian format to the byte sequence in the buffer.
Implementation
void pushUint32Be(int val) {
pushBytes(_toUint32Be(val));
}
Append a 32-bit integer value in big-endian format to the byte sequence in the buffer.
void pushUint32Be(int val) {
pushBytes(_toUint32Be(val));
}