setPhone method

FreshchatUser setPhone(
  1. String phoneCountryCode,
  2. String phone
)

Implementation

FreshchatUser setPhone(String phoneCountryCode, String phone) {
  this._phoneCountryCode = phoneCountryCode;
  this._phone = phone;
  return this;
}