matchM3u8Segment method

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

Returns true if the given uri matches the format of an .m3u8 media segment, such as a .ts file.

Implementation

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