showWallet method
dynamic
showWallet()
Show arcana wallet if user is logged in
Implementation
showWallet() async {
if (_controller != null && _loginState != LoginState.disconnected) {
if (!_isVisible) {
_overlayState = Overlay.of(_context);
_overlayEntry = _createOverlayEntry();
_overlayState.insert(_overlayEntry);
_isVisible = true;
}
}
}