NotificationModel constructor

NotificationModel(
  1. {required NotificationCategory category,
  2. required String text,
  3. required DateTime time}
)

Implementation

NotificationModel(
    {required this.category, required this.text, required this.time});