add method

void add(
  1. String property,
  2. String value
)

Adds a custom property not covered by the named arguments.

Implementation

void add(String property, String value) {
  _properties[property] = value;
}