findFromSaplingPaymentAddressHrp method

ZIP32CoinConfig? findFromSaplingPaymentAddressHrp(
  1. String hrp
)

Implementation

ZIP32CoinConfig? findFromSaplingPaymentAddressHrp(String hrp) {
  return _configs.firstWhereNullable(
    (e) => e.hrpSaplingPaymentAddress == hrp,
  );
}