Note constructor

Note({
  1. String? createTime,
  2. String? creatorRole,
  3. String? note,
  4. String? noteId,
  5. String? proposalRevision,
})

Implementation

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