fromNetwork method

ZIP32CoinConfig fromNetwork(
  1. ZCashNetwork network
)

Implementation

ZIP32CoinConfig fromNetwork(ZCashNetwork network) {
  return _configs.firstWhere(
    (e) => e.network == network,
    orElse: () => throw ItemNotFoundException(value: network.name),
  );
}