getVideoThumbnail method
Generates a thumbnail for a video file.
Returns thumbnail data as Uint8List or null if generation fails
Example:
final thumbnail = await MediaManagerPlatform.instance.getVideoThumbnail('/path/to/video.mp4');
Implementation
Future<Uint8List?> getVideoThumbnail(String videoPath) {
throw UnimplementedError('getVideoThumbnail() has not been implemented.');
}