toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountId = this.accountId;
final containerId = this.containerId;
final domainName = this.domainName;
final features = this.features;
final fingerprint = this.fingerprint;
final name = this.name;
final notes = this.notes;
final path = this.path;
final publicId = this.publicId;
final tagIds = this.tagIds;
final tagManagerUrl = this.tagManagerUrl;
final taggingServerUrls = this.taggingServerUrls;
final usageContext = this.usageContext;
return {
'accountId': ?accountId,
'containerId': ?containerId,
'domainName': ?domainName,
'features': ?features,
'fingerprint': ?fingerprint,
'name': ?name,
'notes': ?notes,
'path': ?path,
'publicId': ?publicId,
'tagIds': ?tagIds,
'tagManagerUrl': ?tagManagerUrl,
'taggingServerUrls': ?taggingServerUrls,
'usageContext': ?usageContext,
};
}