toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountId = this.accountId;
final description = this.description;
final displayName = this.displayName;
final labelId = this.labelId;
final labelType = this.labelType;
final name = this.name;
return {
'accountId': ?accountId,
'description': ?description,
'displayName': ?displayName,
'labelId': ?labelId,
'labelType': ?labelType,
'name': ?name,
};
}