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