From 8b9afbdc3a5dfaeadc60d6527dc3d33d7c894bd9 Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Wed, 17 Feb 2021 09:28:50 +0100 Subject: [PATCH] update doc --- packages/stream_chat/lib/src/api/channel.dart | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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 {