toJson method
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,
};
}