SetTrustLineFlagsOperation constructor
SetTrustLineFlagsOperation(- String trustorId,
- Asset asset,
- int clearFlags,
- 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");
}