init method
Implementation
init({Function(LoginHistory)? authCallback}) async {
await loginHistoryManager.refreshHistory();
if (authCallback != null) {
plugin.registerAuthCallback((username, token) {
_onAuthComplete(username, token);
});
}
}