ClawbackOperationBuilder constructor

ClawbackOperationBuilder(
  1. Asset asset,
  2. String fromAccountId,
  3. String amount
)

Creates a ClawbackOperationBuilder builder. asset Asset to be clawed back. fromAccountId account id from which the asset is clawed back amount Amount to be clawed back.

Implementation

ClawbackOperationBuilder(Asset asset, String fromAccountId, String amount) {
  this._asset = asset;
  this._from = MuxedAccount(fromAccountId, null);
  this._amount = amount;
}