authSuccess method
Implementation
void authSuccess({bool unlock = false}) {
value = value.copyWith(authenticated: true);
_authenticationEventsController
.add(SecureApplicationAuthenticationStatus.SUCCESS);
if (unlock) {
this.unlock();
}
notifyListeners();
}