toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountType = this.accountType;
final automaticLabelIds = this.automaticLabelIds;
final displayName = this.displayName;
final fullName = this.fullName;
final homepageUri = this.homepageUri;
final labelIds = this.labelIds;
final name = this.name;
final parent = this.parent;
return {
'accountType': ?accountType,
'automaticLabelIds': ?automaticLabelIds,
'displayName': ?displayName,
'fullName': ?fullName,
'homepageUri': ?homepageUri,
'labelIds': ?labelIds,
'name': ?name,
'parent': ?parent,
};
}