toJson method

Map<String, dynamic> toJson()

Implementation

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