setUint method

void setUint(
  1. String key,
  2. int value
)

Set an int (encoded as uint) at the given key on the buffer.

Implementation

void setUint(String key, int value) {
  _setValue(key, _encodeUint32(value, Endian.little));
}