create static method
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;
}