setData method
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;
}