updateMessage abstract method

Future<void> updateMessage(
  1. String messageId, {
  2. String? serverId,
  3. String? content,
  4. MessageStatus? status,
  5. DateTime? serverTimestamp,
  6. bool? isDeleted,
  7. bool? isEdited,
  8. bool? isStarred,
  9. bool? isPinned,
  10. DateTime? pinnedUntil,
})

Updates a message.

Implementation

Future<void> updateMessage(
  String messageId, {
  String? serverId,
  String? content,
  MessageStatus? status,
  DateTime? serverTimestamp,
  bool? isDeleted,
  bool? isEdited,
  bool? isStarred,
  bool? isPinned,
  DateTime? pinnedUntil,
});