Thumbnail.fromJson constructor
Parse from a json
Implementation
factory Thumbnail.fromJson(Map<String, dynamic> json) => Thumbnail(
format: ThumbnailFormat.fromJson(json['format']),
width: json['width'],
height: json['height'],
file: File.fromJson(json['file']),
);