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