SetTrustLineFlagsOperation constructor

SetTrustLineFlagsOperation(
  1. String trustorId,
  2. Asset asset,
  3. int clearFlags,
  4. int setFlags
)

Implementation

SetTrustLineFlagsOperation(
    String trustorId, Asset asset, int clearFlags, int setFlags) {
  this._trustorId = checkNotNull(trustorId, "trustorId cannot be null");
  this._asset = checkNotNull(asset, "asset cannot be null");
  this._clearFlags = checkNotNull(clearFlags, "clearFlags cannot be null");
  this._setFlags = checkNotNull(setFlags, "setFlags cannot be null");
}