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