PaymentOperationBuilder.forMuxedDestinationAccount constructor
- MuxedAccount destinationAccount,
- Asset asset,
- String amount
Creates a PaymentOperation builder using a MuxedAccount as a destination.
destinationAccount
MuxedAccount having the accountId of the receiver.
asset
Asset to be sent.
amount
Amount to be sent.
Implementation
PaymentOperationBuilder.forMuxedDestinationAccount(
MuxedAccount destinationAccount, Asset asset, String amount) {
this._destination = destinationAccount;
this._asset = asset;
this._amount = amount;
}