GNNotificationCard constructor

const GNNotificationCard({
  1. Key? key,
  2. String? fromDate,
  3. required String notificationType,
  4. String? notificationMessageLong,
  5. String? notificationDownloadLink,
  6. String? notificationRedirectURL,
})

Implementation

const GNNotificationCard({
  super.key,
  this.fromDate,
  required this.notificationType,
  this.notificationMessageLong,
  this.notificationDownloadLink,
  this.notificationRedirectURL,
});