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