Note constructor

Note({
  1. List<Attachment>? attachments,
  2. Section? body,
  3. String? createTime,
  4. String? name,
  5. List<Permission>? permissions,
  6. String? title,
  7. String? trashTime,
  8. bool? trashed,
  9. String? updateTime,
})

Implementation

Note({
  this.attachments,
  this.body,
  this.createTime,
  this.name,
  this.permissions,
  this.title,
  this.trashTime,
  this.trashed,
  this.updateTime,
});