create static method
return original data json
Implementation
static YoutubeGetChannelByVideo create({
String? special_type,
String? video_id,
}) {
YoutubeGetChannelByVideo youtubeGetChannelByVideo =
YoutubeGetChannelByVideo({
"@type": special_type,
"video_id": video_id,
});
return youtubeGetChannelByVideo;
}