isInstalled method

  1. @override
Future<bool> isInstalled()
override

Implementation

@override
Future<bool> isInstalled() async {
  try {
    return await CoinbaseWalletSDK.shared.isAppInstalled();
  } catch (e, s) {
    throw W3MCoinbaseException('Check is installed error', e, s);
  }
}