PaymentOperationBuilder constructor

PaymentOperationBuilder(
  1. String destinationAccountId,
  2. Asset asset,
  3. String amount
)

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;
}