matchMp4 method

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

Returns true if the given uri matches the .mp4 file format.

Implementation

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