setUint method

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

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

Implementation

void setUint(String key, int value) {
  _scalarData.setUint32(0, value, Endian.little);
  return _set(key, _scalarBuf);
}