showMessageView method

Future<void> showMessageView(
  1. String messageId
)

Displays a specific message view, overriding the auto-launch setting.

This method will show the message view for a specific message, regardless of the auto-launch configuration. messageId The unique identifier of the message to display. Returns a Future that completes when the message view is displayed.

Implementation

Future<void> showMessageView(String messageId) {
  return _module.channel
      .invokeMethod('messageCenter#showMessageView', messageId);
}