identifier method

UserBuilder identifier(
  1. String key,
  2. String value
)

Implementation

UserBuilder identifier(String key, String value) {
  this._identifiers[key] = value;
  return this;
}