setData method

void setData(
  1. String email,
  2. String phone,
  3. String countryCode,
  4. String firstName,
  5. String? lastName,
)

Implementation

void setData(String email, String phone, String countryCode, String firstName,
    String? lastName) {
  Common.email = email;
  Common.phone = phone;
  Common.countryCode = countryCode;
  Common.firstName = firstName;
  Common.lastName = lastName;
}