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