toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final kind = this.kind;
  final notesExport = this.notesExport;
  final notification = this.notification;
  return {
    'kind': ?kind,
    'notesExport': ?notesExport,
    'notification': ?notification,
  };
}