SubmitCompletedChallengeResponse.fromJson constructor
Implementation
factory SubmitCompletedChallengeResponse.fromJson(
Map<String, dynamic> json) =>
new SubmitCompletedChallengeResponse(
json['token'] == null ? null : json['token'] as String,
json['error'] == null ? null : json['error'] as String);