PathPaymentStrictSendOperationBuilder.forMuxedDestinationAccount constructor
- Asset sendAsset,
- String sendAmount,
- MuxedAccount destination,
- Asset destAsset,
- String destMin
Creates a PathPaymentStrictSendOperation builder for a MuxedAccount as a destination.
Implementation
PathPaymentStrictSendOperationBuilder.forMuxedDestinationAccount(
Asset sendAsset,
String sendAmount,
MuxedAccount destination,
Asset destAsset,
String destMin) {
this._sendAsset = checkNotNull(sendAsset, "sendAsset cannot be null");
this._sendAmount = checkNotNull(sendAmount, "sendAmount cannot be null");
checkNotNull(destination, "destination cannot be null");
this._destination = destination;
this._destAsset = checkNotNull(destAsset, "destAsset cannot be null");
this._destMin = checkNotNull(destMin, "destMin cannot be null");
}