addStringProperty method

AppticsUserPropertyBuilder addStringProperty(
  1. String key,
  2. String value
)

Implementation

AppticsUserPropertyBuilder addStringProperty(String key, String value) {
  _properties[key] = value;
  return this;
}