toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (additionalVariables != null)
    'additionalVariables': additionalVariables!,
  if (clientCertType != null) 'clientCertType': clientCertType!,
  if (clientCertificate != null) 'clientCertificate': clientCertificate!,
  if (clientPrivateKey != null) 'clientPrivateKey': clientPrivateKey!,
  if (clientPrivateKeyPass != null)
    'clientPrivateKeyPass': clientPrivateKeyPass!,
  if (privateServerCertificate != null)
    'privateServerCertificate': privateServerCertificate!,
  if (serverCertType != null) 'serverCertType': serverCertType!,
  if (trustModel != null) 'trustModel': trustModel!,
  if (type != null) 'type': type!,
  if (useSsl != null) 'useSsl': useSsl!,
};