toJson method

Map<String, dynamic> toJson()

Implementation

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