toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final lastAuthor = this.lastAuthor;
final name = this.name;
final notebookUpdateTime = this.notebookUpdateTime;
final service = this.service;
return {
'lastAuthor': ?lastAuthor,
'name': ?name,
'notebookUpdateTime': ?notebookUpdateTime,
'service': ?service,
};
}