ChannelProfileDetails.fromJson constructor

ChannelProfileDetails.fromJson(
  1. Map json_
)

Implementation

ChannelProfileDetails.fromJson(core.Map json_)
  : this(
      channelId: json_['channelId'] as core.String?,
      channelUrl: json_['channelUrl'] as core.String?,
      displayName: json_['displayName'] as core.String?,
      profileImageUrl: json_['profileImageUrl'] as core.String?,
    );