fromJson static method
Implementation
static FollowedChannel fromJson(Map<String, dynamic> json) {
return FollowedChannel(
channelId: json['channel_id'],
webhookId: json['webhook_id'],
);
}
static FollowedChannel fromJson(Map<String, dynamic> json) {
return FollowedChannel(
channelId: json['channel_id'],
webhookId: json['webhook_id'],
);
}