Browse SDKs · Flutter
SDKsFlutter

Create a reply message

Create a quoted reply with the OpenIM Flutter SDK.

Copy
final message = await OpenIM.iMManager.messageManager.createQuoteMessage(
  text: 'I agree with this proposal',
  quoteMsg: originalMessage,
);

Use an original message obtained from a list, history query, or event; do not assemble it manually. The Future does not modify the original message.