Merge branch 'feat/custom-attachment-upload' of https://github.com/GetStream/stream-chat-flutter into feat/custom-attachment-upload

This commit is contained in:
Sahil Kumar
2021-02-17 18:28:09 +05:30
@@ -281,9 +281,7 @@ class Channel {
}); });
} }
/// Send a [message] to this channel. Optionally pass a [attachmentUploader] /// Send a [message] to this channel.
/// for custom attachments upload.
///
/// Waits for a [_messageAttachmentsUploadCompleter] to complete /// Waits for a [_messageAttachmentsUploadCompleter] to complete
/// before actually sending the message. /// before actually sending the message.
Future<SendMessageResponse> sendMessage(Message message) async { Future<SendMessageResponse> sendMessage(Message message) async {
@@ -360,9 +358,7 @@ class Channel {
} }
} }
/// Updates the [message] in this channel. Optionally pass a [attachmentUploader] /// Updates the [message] in this channel.
/// for custom attachments upload.
///
/// Waits for a [_messageAttachmentsUploadCompleter] to complete /// Waits for a [_messageAttachmentsUploadCompleter] to complete
/// before actually updating the message. /// before actually updating the message.
Future<UpdateMessageResponse> updateMessage(Message message) async { Future<UpdateMessageResponse> updateMessage(Message message) async {