CreateClaimableBalanceOperation constructor
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");
}