NotificationCard constructor

NotificationCard({
  1. Key? key,
  2. required Notification notification,
})

Implementation

NotificationCard({super.key, required this.notification}) {
  DateTime now = notification.createdOn!;
  date = DateFormat('dd MMM yyyy - kk:mm a').format(now);
  now; //('${now.substring(4, 10)} ${now.substring(now.lastIndexOf(" "))} ${now.substring(11, 16)}');
}