toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fieldChanges = this.fieldChanges;
  final label = this.label;
  final title = this.title;
  final types = this.types;
  return {
    'fieldChanges': ?fieldChanges,
    'label': ?label,
    'title': ?title,
    'types': ?types,
  };
}