toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (accountId != null) 'accountId': accountId!,
      if (containerId != null) 'containerId': containerId!,
      if (domainName != null) 'domainName': domainName!,
      if (features != null) 'features': features!,
      if (fingerprint != null) 'fingerprint': fingerprint!,
      if (name != null) 'name': name!,
      if (notes != null) 'notes': notes!,
      if (path != null) 'path': path!,
      if (publicId != null) 'publicId': publicId!,
      if (tagIds != null) 'tagIds': tagIds!,
      if (tagManagerUrl != null) 'tagManagerUrl': tagManagerUrl!,
      if (taggingServerUrls != null) 'taggingServerUrls': taggingServerUrls!,
      if (usageContext != null) 'usageContext': usageContext!,
    };