ThumbnailResult constructor
const
ThumbnailResult({})
Creates a new ThumbnailResult instance.
All parameters are required:
data: The raw image data as byteswidth: The actual width of the generated thumbnailheight: The actual height of the generated thumbnailformat: The output format of the thumbnailtimePosition: The time position used for generationsize: The file size in bytes
Implementation
const ThumbnailResult({
required this.data,
required this.width,
required this.height,
required this.format,
required this.timePosition,
required this.size,
});