Returns true if the given uri matches the .mp4 file format.
true
uri
.mp4
@override bool matchMp4(Uri uri) { return uri.path.toLowerCase().endsWith('.mp4'); }