toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (certificateRawData != null)
        'certificateRawData': certificateRawData!,
      if (displayName != null) 'displayName': displayName!,
      if (domainMappingsCount != null)
        'domainMappingsCount': domainMappingsCount!,
      if (domainNames != null) 'domainNames': domainNames!,
      if (expireTime != null) 'expireTime': expireTime!,
      if (id != null) 'id': id!,
      if (managedCertificate != null)
        'managedCertificate': managedCertificate!,
      if (name != null) 'name': name!,
      if (visibleDomainMappings != null)
        'visibleDomainMappings': visibleDomainMappings!,
    };