setOnce method

Identify setOnce(
  1. String property,
  2. dynamic value
)

Implementation

Identify setOnce(String property, dynamic value) {
  // TODO(xinyi): data type check
  _setUserProperty(IdentifyOperation.setOnce, property, value);
  return this;
}