getVideoThumbnail method

Future<Uint8List?> getVideoThumbnail(
  1. String videoPath
)

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.');
}