matchM3u8Key method

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

Returns true if the given uri matches the format of an .m3u8 encryption key.

Implementation

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