create static method
return original data json
Implementation
static YoutubeVideoThumbnails create({
String? special_type,
String? low,
String? medium,
String? high,
String? max,
String? standard,
}) {
YoutubeVideoThumbnails youtubeVideoThumbnails = YoutubeVideoThumbnails({
"@type": special_type,
"low": low,
"medium": medium,
"high": high,
"max": max,
"standard": standard,
});
return youtubeVideoThumbnails;
}