SDKsFlutter
Create a rich-text reply
Create a rich-text quoted message with the OpenIM Flutter SDK.
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.
Was this page helpful?