ChannelMessageSend constructor

ChannelMessageSend({
  1. String? channelId,
  2. String? content,
})

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;
}