onProtocolUrlReceived method
Implementation
Future<bool> onProtocolUrlReceived(String url) async {
final handled = await _nwcWalletAuthCoordinator.processProtocolUrl(
context,
widget.ndkFlutter,
url,
);
if (!handled || !mounted) return handled;
_selectConnectedWallet();
return handled;
}