getMessageStatusOf static method

Future<String> getMessageStatusOf({
  1. required String messageId,
})

Get Status of a message to the Mirrorfly chat platform.

The messageId parameter specifies the unique identifier of the message for which the message you have to get

Returns a String that completes with a Json Encoded value of the message Status Details (ChatMessageStatusDetail)

Throws an PlatformException if any error occurred.

Implementation

static Future<String> getMessageStatusOf({required String messageId}) {
  return FlyChatFlutterPlatform.instance
      .getMessageStatusOfASingleChatMessage(messageId);
}