getVideoThumbnail method
Get a thumbnail for a video
Implementation
@override
Future<Uint8List?> getVideoThumbnail(
String videoId, {
int width = 128,
int height = 128,
}) async {
final Uint8List? result = await methodChannel.invokeMethod(
'getVideoThumbnail',
{'videoId': videoId, 'width': width, 'height': height},
);
return result;
}