toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountId = this.accountId;
final clientId = this.clientId;
final containerId = this.containerId;
final fingerprint = this.fingerprint;
final name = this.name;
final notes = this.notes;
final parameter = this.parameter;
final parentFolderId = this.parentFolderId;
final path = this.path;
final priority = this.priority;
final tagManagerUrl = this.tagManagerUrl;
final type = this.type;
final workspaceId = this.workspaceId;
return {
'accountId': ?accountId,
'clientId': ?clientId,
'containerId': ?containerId,
'fingerprint': ?fingerprint,
'name': ?name,
'notes': ?notes,
'parameter': ?parameter,
'parentFolderId': ?parentFolderId,
'path': ?path,
'priority': ?priority,
'tagManagerUrl': ?tagManagerUrl,
'type': ?type,
'workspaceId': ?workspaceId,
};
}