create static method
return original data json
Implementation
static YoutubeGetChannel create({
String? special_type,
String? channel_id,
}) {
YoutubeGetChannel youtubeGetChannel = YoutubeGetChannel({
"@type": special_type,
"channel_id": channel_id,
});
return youtubeGetChannel;
}