create static method
return original data json
Implementation
static YoutubeChannelThumbnails create({
String? special_type,
String? url,
int? height,
int? width,
}) {
YoutubeChannelThumbnails youtubeChannelThumbnails =
YoutubeChannelThumbnails({
"@type": special_type,
"url": url,
"height": height,
"width": width,
});
return youtubeChannelThumbnails;
}