ChallengeReply.fromJson constructor

ChallengeReply.fromJson(
  1. Map json_
)

Implementation

ChallengeReply.fromJson(core.Map json_)
  : this(
      publicKeyPem: json_['publicKeyPem'] as core.String?,
      signedChallenge: json_['signedChallenge'] as core.String?,
    );