create static method
return original data json
Implementation
static YoutubeChannelLinks create({
String? special_type,
String? title,
String? url,
String? icon,
}) {
YoutubeChannelLinks youtubeChannelLinks = YoutubeChannelLinks({
"@type": special_type,
"title": title,
"url": url,
"icon": icon,
});
return youtubeChannelLinks;
}