create static method

YoutubeGetChannelVideo create({
  1. String? special_type,
  2. String? channel_id,
})
override

return original data json

Implementation

static YoutubeGetChannelVideo create({
  String? special_type,
  String? channel_id,
}) {
  YoutubeGetChannelVideo youtubeGetChannelVideo = YoutubeGetChannelVideo({
    "@type": special_type,
    "channel_id": channel_id,
  });

  return youtubeGetChannelVideo;
}