CertificateConfigKeyId.fromJson constructor

CertificateConfigKeyId.fromJson(
  1. Map json_
)

Implementation

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