pushUint32Be method

void pushUint32Be(
  1. int val
)

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));
}