Notifications constructor

Notifications({
  1. int id = 0,
  2. String title = '',
  3. String description = '',
  4. String image = '',
  5. int status = 0,
  6. String createdAt = '',
  7. String receiver = '',
})

Implementation

Notifications(
    {this.id = 0,
    this.title = '',
    this.description = '',
    this.image = '',
    this.status = 0,
    this.createdAt = '',
    this.receiver = ''});