putString method

Param putString(
  1. String key,
  2. String value
)

Sets a string value for a string key.

Returns the Param object after setting the given value for the key.

Implementation

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