VideoThumb constructor
const
VideoThumb({})
Implementation
const VideoThumb(
{required VideoThumbTextSize textSize,
required String title,
required String lengthText,
required String thumbUrl,
required bool shouldShowPlayButton,
required void Function() onTap,
Key? key})
: _textSize = textSize,
_title = title,
_lengthText = lengthText,
_thumbUrl = thumbUrl,
_shouldShowPlayButton = shouldShowPlayButton,
_onTap = onTap,
super(key: key);