toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final category = this.category;
  final description = this.description;
  final details = this.details;
  final reason = this.reason;
  final state = this.state;
  return {
    'category': ?category,
    'description': ?description,
    'details': ?details,
    'reason': ?reason,
    'state': ?state,
  };
}