PaymentOperation constructor
Implementation
PaymentOperation(String 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");
}