KakaoAccountResult.fromJson constructor

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

Implementation

factory KakaoAccountResult.fromJson(Map<String, dynamic>? json) {
  return KakaoAccountResult(
    userID: json?['userID'],
    userEmail: json?['userEmail'],
    userPhoneNumber: json?['userPhoneNumber'],
    userDisplayID: json?['userDisplayID'],
    userNickname: json?['userNickname'],
    userGender: json?['userGender'],
    userAgeRange: json?['userAgeRange'],
    userBirthyear: json?['userBirthyear'],
    userBirthday: json?['userBirthday'],
    userProfileImagePath: json?['userProfileImagePath'],
    userThumbnailImagePath: json?['userThumbnailImagePath'],
  );
}