putBoolen method

Param putBoolen(
  1. String key,
  2. bool value
)

Sets a Boolean value for a String key.

Returns Param object after this procedure.

Implementation

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