shouldShow method

bool shouldShow(
  1. BuildContext context
)

Implementation

bool shouldShow(BuildContext context) {
  if (controller(context).spriteVtt == null) return false;
  if (controller(context).spriteImage == null) return false;
  if (thumbnailController(context).getCurrentTime().isNegative) return false;
  return true;
}