ChangeTrustOperationBuilder constructor

ChangeTrustOperationBuilder(
  1. Asset asset,
  2. String limit
)

Creates a new ChangeTrust builder.

Implementation

ChangeTrustOperationBuilder(Asset asset, String limit) {
  this._asset = checkNotNull(asset, "asset cannot be null");
  this._limit = checkNotNull(limit, "limit cannot be null");
}