VerifyChallengeResponseRequest.fromJson constructor
VerifyChallengeResponseRequest.fromJson(
- Map json_
Implementation
VerifyChallengeResponseRequest.fromJson(core.Map json_)
: this(
challengeResponse: json_.containsKey('challengeResponse')
? json_['challengeResponse'] as core.String
: null,
expectedIdentity: json_.containsKey('expectedIdentity')
? json_['expectedIdentity'] as core.String
: null,
);