SocialLoginUserModel.fromJson constructor Null safety
Implementation
factory SocialLoginUserModel.fromJson(Map<String, dynamic> json) =>
SocialLoginUserModel(
firstName: json["firstName"],
lastName: json["lastName"],
email: json["email"],
mobile: json["mobile"],
imageUrl: json["imageUrl"],
socialType: json["socialType"],
socialCode: json["socialCode"],
id: json["id"],
deviceId: json["deviceID"],
appleId: json["appleId"],
);