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