toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final disabled = this.disabled;
final hiddenInSearch = this.hiddenInSearch;
final priority = this.priority;
final shownInApply = this.shownInApply;
return {
'disabled': ?disabled,
'hiddenInSearch': ?hiddenInSearch,
'priority': ?priority,
'shownInApply': ?shownInApply,
};
}