class NotificationEntity { const NotificationEntity({ required this.title, required this.content, required this.dateTime, }); final String title; final String content; final DateTime dateTime; }