PaymentOperation constructor

PaymentOperation(
  1. MuxedAccount destination,
  2. Asset asset,
  3. 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");
}