resumePendingWalletAuth method
Completes pending external-wallet authorization after host app resumes.
Implementation
Future<bool> resumePendingWalletAuth() async {
final handled = await _nwcWalletAuthCoordinator.handleAppResume(
context,
widget.ndkFlutter,
);
if (!handled || !mounted) return handled;
_selectConnectedWallet();
return handled;
}