GenerateClientCertificateResponse.fromJson constructor

GenerateClientCertificateResponse.fromJson(
  1. Map json_
)

Implementation

GenerateClientCertificateResponse.fromJson(core.Map json_)
    : this(
        caCert: json_.containsKey('caCert')
            ? json_['caCert'] as core.String
            : null,
        pemCertificateChain: json_.containsKey('pemCertificateChain')
            ? (json_['pemCertificateChain'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );