SocialLoginUserModel.fromJson constructor Null safety

SocialLoginUserModel.fromJson(
  1. Map<String, dynamic> json
)

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"],
    );