open method

void open()

App will no longer be secured and content will be visible if user switch app

Implementation

void open() {
  SecureApplicationNative.open();
  if (value.secured) {
    value = value.copyWith(secured: false);
    notifyListeners();
  }
}