VerifyChallengeResponseResult.fromJson constructor

VerifyChallengeResponseResult.fromJson(
  1. Map json_
)

Implementation

VerifyChallengeResponseResult.fromJson(core.Map json_)
    : this(
        attestedDeviceId: json_.containsKey('attestedDeviceId')
            ? json_['attestedDeviceId'] as core.String
            : null,
        deviceEnrollmentId: json_.containsKey('deviceEnrollmentId')
            ? json_['deviceEnrollmentId'] as core.String
            : null,
        devicePermanentId: json_.containsKey('devicePermanentId')
            ? json_['devicePermanentId'] as core.String
            : null,
        signedPublicKeyAndChallenge:
            json_.containsKey('signedPublicKeyAndChallenge')
                ? json_['signedPublicKeyAndChallenge'] as core.String
                : null,
        verificationOutput: json_.containsKey('verificationOutput')
            ? json_['verificationOutput'] as core.String
            : null,
      );