isHlsUrl static method

bool isHlsUrl(
  1. String url
)

Check if URL is HLS.

Implementation

static bool isHlsUrl(String url) {
  final lower = url.toLowerCase();
  return lower.endsWith('.m3u8') || lower.contains('.m3u8?');
}