diff --git a/packages/stream_chat/lib/src/api/channel.dart b/packages/stream_chat/lib/src/api/channel.dart index 8466a14a..b9104e93 100644 --- a/packages/stream_chat/lib/src/api/channel.dart +++ b/packages/stream_chat/lib/src/api/channel.dart @@ -281,9 +281,7 @@ class Channel { }); } - /// Send a [message] to this channel. Optionally pass a [attachmentUploader] - /// for custom attachments upload. - /// + /// Send a [message] to this channel. /// Waits for a [_messageAttachmentsUploadCompleter] to complete /// before actually sending the message. Future sendMessage(Message message) async { @@ -360,9 +358,7 @@ class Channel { } } - /// Updates the [message] in this channel. Optionally pass a [attachmentUploader] - /// for custom attachments upload. - /// + /// Updates the [message] in this channel. /// Waits for a [_messageAttachmentsUploadCompleter] to complete /// before actually updating the message. Future updateMessage(Message message) async {