addBooleanProperty method

AppticsUserPropertyBuilder addBooleanProperty(
  1. String key,
  2. bool value
)

Implementation

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