copyWith method
Implementation
Thumbnail copyWith({
  ThumbnailFormat? format,
  int? width,
  int? height,
  File? file,
}) => Thumbnail(
  format: format ?? this.format,
  width: width ?? this.width,
  height: height ?? this.height,
  file: file ?? this.file,
);