Note constructor

Note({
  1. String? createTime,
  2. String? creatorRole,
  3. String? note,
})

Implementation

Note({
  this.createTime,
  this.creatorRole,
  this.note,
});