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