PkixPublicKey.fromJson constructor

PkixPublicKey.fromJson(
  1. Map json_
)

Implementation

PkixPublicKey.fromJson(core.Map json_)
  : this(
      keyId: json_['keyId'] as core.String?,
      publicKeyPem: json_['publicKeyPem'] as core.String?,
      signatureAlgorithm: json_['signatureAlgorithm'] as core.String?,
    );