NotificationModel constructor

NotificationModel({
  1. required String title,
  2. required String image,
  3. void onTap()?,
})

Implementation

NotificationModel({
  required this.title,
  required this.image,
  this.onTap,
});