Channel.fromJson constructor

Channel.fromJson(
  1. Map json_
)

Implementation

Channel.fromJson(core.Map json_)
  : this(
      channelType: json_['channelType'] as core.String?,
      name: json_['name'] as core.String?,
    );