ChannelMessageUpdate constructor

ChannelMessageUpdate({
  1. String? channelId,
  2. String? messageId,
  3. String? content,
})

Implementation

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