create static method

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

return original data json

Implementation

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

  return youtubeGetChannelFullInfo;
}