NotificationModel constructor
const
NotificationModel({})
Creates a new instance of the NotificationModel
class.
The id
, title
, description
, date
, and file
parameters are required.
Implementation
const NotificationModel({
required this.id,
required this.title,
this.description,
required this.date,
this.file,
});