RPCRipplePathFind constructor

RPCRipplePathFind({
  1. required String sourceAccount,
  2. required String destinationAccount,
  3. required CurrencyAmount destinationAmount,
  4. CurrencyAmount? sendMax,
  5. List<XRPCurrencies>? sourceCurrencies,
  6. XRPLLedgerIndex? ledgerIndex = XRPLLedgerIndex.validated,
})

Implementation

RPCRipplePathFind(
    {required this.sourceAccount,
    required this.destinationAccount,
    required this.destinationAmount,
    this.sendMax,
    this.sourceCurrencies,
    XRPLLedgerIndex? ledgerIndex = XRPLLedgerIndex.validated})
    : super(ledgerIndex: ledgerIndex);