screenViewed static method

Future<void> screenViewed(
  1. MBAutomationView view
)

Function called when a screen has been viewed. It checks the saved messages (with the MBAutomationMessagesViewManager) and tells all the MBViewTrigger triggers that this view has been viewed. @param view The screen view that the user has viewed.

Implementation

static Future<void> screenViewed(MBAutomationView view) async {
  MBAutomationMessagesViewManager.screenViewed(view);
}