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