PaymentOperation constructor
- MuxedAccount destination,
- Asset asset,
- String amount
Implementation
PaymentOperation(MuxedAccount destination, Asset asset, String amount) {
this._destination = checkNotNull(destination, "destination cannot be null");
this._asset = checkNotNull(asset, "asset cannot be null");
this._amount = checkNotNull(amount, "amount cannot be null");
}