fromJson static method
Implementation
static UserBean fromJson(Map jsons) {
return UserBean(
jsons['first_name'],
jsons['last_name'],
jsons['email'],
jsons['phone'],
jsons['country_id'],
jsons['language'],
jsons['deviceId']);
}