generateThumbnail method

Future<String?> generateThumbnail({
  1. required String videoPath,
  2. int width = 100,
  3. int height = 100,
  4. int timeMs = 0,
})

Implementation

Future<String?> generateThumbnail({
  required String videoPath,
  int width = 100,
  int height = 100,
  int timeMs = 0,
}) {
  throw UnimplementedError('generateThumbnail() has not been implemented.');
}