create static method
return original data json
Implementation
static YoutubeSearchSuggestions create({
String? special_type,
int? count,
List<String>? suggestions,
}) {
YoutubeSearchSuggestions youtubeSearchSuggestions =
YoutubeSearchSuggestions({
"@type": special_type,
"count": count,
"suggestions": suggestions,
});
return youtubeSearchSuggestions;
}