matchM3u8 method

  1. @override
bool matchM3u8(
  1. Uri uri
)
override

Returns true if the given uri matches the .m3u8 playlist file format.

Implementation

@override
bool matchM3u8(Uri uri) {
  return uri.path.toLowerCase().endsWith('.m3u8');
}