getVideoThumbnail method

Future<Uint8List?> getVideoThumbnail(
  1. String videoId, {
  2. int width = 128,
  3. int height = 128,
})

Get a thumbnail for a video

Implementation

Future<Uint8List?> getVideoThumbnail(
  String videoId, {
  int width = 128,
  int height = 128,
}) {
  throw UnimplementedError('getVideoThumbnail() has not been implemented.');
}