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(this._asset, String fromAccountId, this._amount) {
  MuxedAccount? fr = MuxedAccount.fromAccountId(fromAccountId);
  this._from = checkNotNull(fr, "invalid fromAccountId");
}