fromJson static method

FollowedChannel fromJson(
  1. Map<String, dynamic> json
)

Implementation

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