setFloat method

void setFloat(
  1. String key,
  2. double value
)

Set a double at the given key.

Implementation

void setFloat(String key, double value) {
  _scalarData.setFloat32(0, value, Endian.little);
  return _set(key, _scalarBuf);
}