ChannelModel.fromJson constructor
Implementation
ChannelModel.fromJson(Map<String, dynamic> json) {
id = TypeSafeConversion.nullSafeString(json['channelId']);
name = TypeSafeConversion.nullSafeString(json['channelName']);
description = TypeSafeConversion.nullSafeString(json['channelDescription']);
}