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