Challenge.fromJson constructor

Challenge.fromJson(
  1. Map json_
)

Implementation

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