toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountId = this.accountId;
final features = this.features;
final fingerprint = this.fingerprint;
final name = this.name;
final path = this.path;
final shareData = this.shareData;
final tagManagerUrl = this.tagManagerUrl;
return {
'accountId': ?accountId,
'features': ?features,
'fingerprint': ?fingerprint,
'name': ?name,
'path': ?path,
'shareData': ?shareData,
'tagManagerUrl': ?tagManagerUrl,
};
}