ChannelMessageSend constructor
Implementation
factory ChannelMessageSend({
$core.String? channelId,
$core.String? content,
}) {
final _result = create();
if (channelId != null) {
_result.channelId = channelId;
}
if (content != null) {
_result.content = content;
}
return _result;
}