isVideoUrl static method

bool isVideoUrl(
  1. String url
)

Returns true if URL extension matches a video type.

Implementation

static bool isVideoUrl(String url) => _getMediaType(url) == MediaType.video;