Notebook constructor

Notebook({
  1. String? lastAuthor,
  2. String? name,
  3. String? notebookUpdateTime,
  4. String? service,
})

Implementation

Notebook({
  this.lastAuthor,
  this.name,
  this.notebookUpdateTime,
  this.service,
});