ClawbackOperationBuilder constructor
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;
}