openNotifications method

Future<void> openNotifications()

Opens the notification shade.

See also:

Implementation

Future<void> openNotifications() {
  return platform.action.mobile(
    android: platform.android.openNotifications,
    ios: platform.ios.openNotifications,
  );
}