ExplorerService constructor

ExplorerService({
  1. required String projectId,
  2. required String referer,
  3. String explorerUriRoot = 'https://explorer-api.walletconnect.com',
  4. Set<String>? recommendedWalletIds,
  5. ExcludedWalletState excludedWalletState = ExcludedWalletState.list,
  6. Set<String>? excludedWalletIds,
  7. Client? client,
})

Implementation

ExplorerService({
  required this.projectId,
  required this.referer,
  this.explorerUriRoot = 'https://explorer-api.walletconnect.com',
  this.recommendedWalletIds,
  this.excludedWalletState = ExcludedWalletState.list,
  this.excludedWalletIds,
  http.Client? client,
}) : client = client ?? http.Client();