create static method
return original data json
Implementation
static YoutubeSubscribeChannel create({
String? special_type,
String? special_client_channel,
String? channel_id,
}) {
YoutubeSubscribeChannel youtubeSubscribeChannel = YoutubeSubscribeChannel({
"@type": special_type,
"@client_channel": special_client_channel,
"channel_id": channel_id,
});
return youtubeSubscribeChannel;
}