create static method

YoutubeSubscribeChannel create({
  1. String? special_type,
  2. String? special_client_channel,
  3. String? channel_id,
})
override

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;
}