DescribeChannelResponse.fromJson constructor

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

Implementation

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