Untitled
DrawerLinkWidget( icon: SvgPicture.asset( 'assets/svg/icHeart.svg', color: themeNotifier.getTheme().hoverColor, ), text: playListNotifier.playerProps!.bookInfo.data!.first.isFav! ? 'Remove from favourite' : 'Add to favourite'.tr(), onTap: () { playListNotifier.favouriteValue( playListNotifier.playerProps!.bookInfo.data!.first.isFav!); playListNotifier.addToWhishListORFav( playListNotifier.playerProps!.bookInfo.data!.first.id, 'fav', ); }, ),