toJson method

Map<String, dynamic> toJson()

Implementation

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