putDouble method

Param putDouble(
  1. String key,
  2. double value
)

Sets a Double value for a String key.

Returns Param object after this procedure.

Implementation

Param putDouble(String key, double value) {
  builderAgent?.putDouble(key, value);
  return this;
}