GetProfileResponse.fromJson constructor

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

Implementation

factory GetProfileResponse.fromJson(Map<String, dynamic> json) {
  return GetProfileResponse(
    profile: json['Profile'] != null
        ? Profile.fromJson(json['Profile'] as Map<String, dynamic>)
        : null,
  );
}