preInsert method

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

Implementation

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