NoticePoint constructor

NoticePoint({
  1. String oId = '',
  2. String dataId = '',
  3. String userId = '',
  4. int dataType = 0,
  5. String description = '',
  6. bool hasRead = false,
  7. String createTime = '',
})

Implementation

NoticePoint({
  this.oId = '',
  this.dataId = '',
  this.userId = '',
  this.dataType = 0, // Assuming DataType.DEFAULT as default value
  this.description = '',
  this.hasRead = false,
  this.createTime = '',
});