toJson method

Map<String, dynamic> toJson()

Implementation

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