toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fieldValues = this.fieldValues;
  final id = this.id;
  final reason = this.reason;
  final title = this.title;
  return {
    'fieldValues': ?fieldValues,
    'id': ?id,
    'reason': ?reason,
    'title': ?title,
  };
}