Pass null for onImageTap when no function is passed

This commit is contained in:
Ayush Shekhar
2022-02-24 15:56:19 +05:30
parent 5e29418531
commit c7ba48a446
@@ -599,7 +599,9 @@ class _ChannelListViewState extends State<ChannelListView> {
child: ChannelPreview(
onLongPress: widget.onChannelLongPress,
channel: channel,
onImageTap: () => widget.onImageTap?.call(channel),
onImageTap: widget.onImageTap != null
? () => widget.onImageTap!(channel)
: null,
onTap: (channel) => onTap(channel, widget.channelWidget),
),
),