create static method

YoutubeChannelThumbnails create({
  1. String? special_type,
  2. String? url,
  3. int? height,
  4. int? width,
})
override

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;
}