Notif constructor

Notif(
  1. String? title,
  2. String? content
)

Implementation

Notif(this.title, this.content){
  this.type = "NORMAL";
  this.createdAt = DateTime.now().millisecondsSinceEpoch;
  this.id = this.createdAt;
}