MysqlSslConfig.fromJson constructor

MysqlSslConfig.fromJson(
  1. Map json_
)

Implementation

MysqlSslConfig.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?,
    );