ChallengeEventDetails.fromJson constructor
Implementation
factory ChallengeEventDetails.fromJson(Map<String, dynamic> json) {
return ChallengeEventDetails(
challengeResult: ChallengeEventDetailsChallengeResult.fromJson(
json['challengeResult'] as String,
),
challenge: json['challenge'] as String,
);
}