CreateClaimableBalanceOperation constructor

CreateClaimableBalanceOperation(
  1. List<Claimant> claimants,
  2. Asset asset,
  3. String amount
)

Implementation

CreateClaimableBalanceOperation(
    List<Claimant> claimants, Asset asset, String amount) {
  this._claimants = checkNotNull(claimants, "claimants cannot be null");
  this._asset = checkNotNull(asset, "asset cannot be null");
  this._amount = checkNotNull(amount, "amount cannot be null");
}