MongodbSslConfig.fromJson constructor

MongodbSslConfig.fromJson(
  1. Map json_
)

Implementation

MongodbSslConfig.fromJson(core.Map json_)
  : this(
      caCertificate: json_['caCertificate'] as core.String?,
      caCertificateSet: json_['caCertificateSet'] as core.bool?,
      clientCertificate: json_['clientCertificate'] as core.String?,
      clientCertificateSet: json_['clientCertificateSet'] as core.bool?,
      clientKey: json_['clientKey'] as core.String?,
      clientKeySet: json_['clientKeySet'] as core.bool?,
      secretManagerStoredClientKey:
          json_['secretManagerStoredClientKey'] as core.String?,
    );