DescribeChannelResponse.fromJson constructor
Implementation
factory DescribeChannelResponse.fromJson(Map<String, dynamic> json) {
return DescribeChannelResponse(
channel: json['channel'] != null
? Channel.fromJson(json['channel'] as Map<String, dynamic>)
: null,
statistics: json['statistics'] != null
? ChannelStatistics.fromJson(
json['statistics'] as Map<String, dynamic>)
: null,
);
}