toJson method

Map<String, dynamic> toJson()

Implementation

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