FxNotificationTile constructor

FxNotificationTile({
  1. Key? key,
  2. required FxNotification notification,
  3. VoidCallback? onTap,
  4. VoidCallback? onDelete,
})

Implementation

FxNotificationTile({
  super.key,
  required this.notification,
  this.onTap,
  this.onDelete,
});