updateMessages method

Future<void> updateMessages(
  1. String cid,
  2. List<Message> messages
)

Updates the message data of a particular channel cid with the new messages data

Implementation

Future<void> updateMessages(String cid, List<Message> messages) =>
    bulkUpdateMessages({cid: messages});