toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final name = this.name;
  final notes = this.notes;
  final quickPreview = this.quickPreview;
  return {'name': ?name, 'notes': ?notes, 'quickPreview': ?quickPreview};
}