getAllVideos method
Retrieves paths of all video files on the device.
Returns a List of absolute file paths to video files
Example:
final videos = await MediaManagerPlatform.instance.getAllVideos();
Implementation
Future<List<String>> getAllVideos() {
throw UnimplementedError('getAllVideos() has not been implemented.');
}