hideNotification function

Future<void> hideNotification()

Implementation

Future<void> hideNotification() async {
  try {
    _printLog('''Hiding Notification overlay''');
    await _hideOverlay(_OverlayType.Notification);
  } catch (err) {
    _printError('''Caught an exception while trying to hide Notification''');
    throw err;
  }
}