PaymentOperationBuilder constructor

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

Creates a PaymentOperation builder.

Implementation

PaymentOperationBuilder(String destinationAccountId, Asset asset, String amount) {
  this._destination = destinationAccountId;
  this._asset = asset;
  this._amount = amount;
}