ClawbackOperation constructor

ClawbackOperation(
  1. Asset asset,
  2. MuxedAccount from,
  3. String amount
)

Implementation

ClawbackOperation(Asset asset, MuxedAccount from, String amount) {
  this._from = checkNotNull(from, "from cannot be null");
  this._asset = checkNotNull(asset, "asset cannot be null");
  this._amount = checkNotNull(amount, "amount cannot be null");
}