toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (pathForwarding != null) 'pathForwarding': pathForwarding!,
  if (pemCertificate != null) 'pemCertificate': pemCertificate!,
  if (redirectType != null) 'redirectType': redirectType!,
  if (sslEnabled != null) 'sslEnabled': sslEnabled!,
  if (subdomain != null) 'subdomain': subdomain!,
  if (targetUri != null) 'targetUri': targetUri!,
};