CollectiveNote constructor

CollectiveNote({
  1. String id = '',
  2. String collectiveId = '',
  3. String title = '',
  4. String contentJson = '',
  5. String plainText = '',
  6. String createdBy = '',
  7. String lastEditedBy = '',
  8. String lastEditorName = '',
  9. int createdAt = 0,
  10. int updatedAt = 0,
  11. bool isPinned = false,
  12. String emoji = '',
})

Implementation

CollectiveNote({
  this.id = '',
  this.collectiveId = '',
  this.title = '',
  this.contentJson = '',
  this.plainText = '',
  this.createdBy = '',
  this.lastEditedBy = '',
  this.lastEditorName = '',
  this.createdAt = 0,
  this.updatedAt = 0,
  this.isPinned = false,
  this.emoji = '',
});