updateMessage method

Future<UpdateMessageResponse> updateMessage(
  1. Message message, {
  2. bool skipEnrichUrl = false,
})

Update the given message

Implementation

Future<UpdateMessageResponse> updateMessage(
  Message message, {
  bool skipEnrichUrl = false,
}) =>
    _chatApi.message.updateMessage(
      message,
      skipEnrichUrl: skipEnrichUrl,
    );