Browse SDKs · Flutter
SDKsFlutter

Create a rich-text reply

Create a rich-text quoted message with the OpenIM Flutter SDK.

Copy
final message = await OpenIM.iMManager.messageManager
    .createAdvancedQuoteMessage(
  text: text,
  quoteMsg: originalMessage,
  list: entities,
);

Entity ranges must match the final text, and the original message must be complete. The Future creates a new object waiting to be sent.