BlockchainAdapterFactory.fromKey constructor

BlockchainAdapterFactory.fromKey({
  1. required String key,
  2. required NetworkId networkId,
})

Implementation

factory BlockchainAdapterFactory.fromKey(
        {required String key, required NetworkId networkId}) =>
    BlockchainAdapterFactory(
        authInterceptor: interceptorFromKey(key: key),
        networkId: networkId,
        projectId: key);