VideoThumbnail.file constructor

const VideoThumbnail.file(
  1. String? path, {
  2. Key? key,
  3. double? height,
  4. double? width,
  5. Future<void> onError()?,
})

Constructs a VideoThumbnail from the provided file path.

Implementation

const VideoThumbnail.file(
  this.path, {
  super.key,
  this.height,
  this.width,
  this.onError,
}) : url = null,
     checksum = null,
     bytes = null;