isInstalled method
Implementation
@override
Future<bool> isInstalled() async {
try {
return await CoinbaseWalletSDK.shared.isAppInstalled();
} catch (e, s) {
_core.logger.e('[$runtimeType] isInstalled $e');
throw CoinbaseServiceException('Check is installed error', e, s);
}
}