ClawbackOperation constructor
- Asset asset,
- MuxedAccount from,
- 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");
}