Notebook constructor

Notebook({
  1. User? createdBy,
  2. String? createdDateTime,
  3. String? id,
  4. bool? isDefault,
  5. bool? isShared,
  6. User? lastModifiedBy,
  7. String? lastModifiedDateTime,
  8. List<String>? links,
  9. String? displayName,
  10. String? sectionGroupsUrl,
  11. String? sectionsUrl,
  12. String? self,
  13. String? userRole,
})

Implementation

Notebook({
  this.createdBy,
  this.createdDateTime,
  this.id,
  this.isDefault,
  this.isShared,
  this.lastModifiedBy,
  this.lastModifiedDateTime,
  this.links,
  this.displayName,
  this.sectionGroupsUrl,
  this.sectionsUrl,
  this.self,
  this.userRole,
});