toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final channelId = this.channelId;
final channelUrl = this.channelUrl;
final displayName = this.displayName;
final profileImageUrl = this.profileImageUrl;
return {
'channelId': ?channelId,
'channelUrl': ?channelUrl,
'displayName': ?displayName,
'profileImageUrl': ?profileImageUrl,
};
}