VideoThumbnail.url constructor

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

Constructs a VideoThumbnail from the provided url.

Implementation

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