PathPaymentStrictReceiveOperationBuilder constructor

PathPaymentStrictReceiveOperationBuilder(
  1. Asset _sendAsset,
  2. String _sendMax,
  3. String destinationAccountId,
  4. Asset _destAsset,
  5. String _destAmount,
)

Creates a PathPaymentStrictReceiveOperation builder.

Implementation

PathPaymentStrictReceiveOperationBuilder(this._sendAsset, this._sendMax,
    String destinationAccountId, this._destAsset, this._destAmount) {
  MuxedAccount? da = MuxedAccount.fromAccountId(destinationAccountId);
  checkNotNull(da, "invalid destinationAccountId");
  this._destination = da!;
}