VerifyChallengeResponseRequest.fromJson constructor

VerifyChallengeResponseRequest.fromJson(
  1. Map json_
)

Implementation

VerifyChallengeResponseRequest.fromJson(core.Map json_)
    : this(
        challengeResponse: json_.containsKey('challengeResponse')
            ? SignedData.fromJson(json_['challengeResponse']
                as core.Map<core.String, core.dynamic>)
            : null,
        expectedIdentity: json_.containsKey('expectedIdentity')
            ? json_['expectedIdentity'] as core.String
            : null,
      );