PaymentOperationBuilder constructor
Creates a PaymentOperation builder.
destinationAccountId
account id of the receiver.
asset
Asset to be sent.
amount
Amount to be sent.
Implementation
PaymentOperationBuilder(
String destinationAccountId, Asset asset, String amount) {
this._destination = MuxedAccount(destinationAccountId, null);
this._asset = asset;
this._amount = amount;
}