setFloat method

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

Set a double at the given key on the buffer.

Implementation

void setFloat(String key, double value) {
  _setValue(key, [value]);
}