SigstorePublicKey.fromJson constructor

SigstorePublicKey.fromJson(
  1. Map json_
)

Implementation

SigstorePublicKey.fromJson(core.Map json_)
    : this(
        publicKeyPem: json_.containsKey('publicKeyPem')
            ? json_['publicKeyPem'] as core.String
            : null,
      );