startVLCPlayer method
Starts the VLC player with the provided parameters.
Returns true
if the VLC player was successfully launched, false
otherwise.
Throws an UnimplementedError if the platform-specific implementation doesn't override this method.
Implementation
Future<bool?> startVLCPlayer({
required String file,
required String mimeType,
required String title,
}) {
throw UnimplementedError('startVLCPlayer() has not been implemented.');
}