isVideoSourceVid method

bool isVideoSourceVid()

判断视频源是否为 VID

Implementation

bool isVideoSourceVid() {
  var videoSource = _widgetData?.videoSource;
  return videoSource is VidStsVideoSource ||
      videoSource is VidAuthVideoSource;
}