setSourceAccount method

CreateClaimableBalanceOperationBuilder setSourceAccount (
  1. String sourceAccount
)

Sets the source account for this operation represented by sourceAccount.

Implementation

CreateClaimableBalanceOperationBuilder setSourceAccount(
    String sourceAccount) {
  checkNotNull(sourceAccount, "sourceAccount cannot be null");
  _mSourceAccount = MuxedAccount(sourceAccount, null);
  return this;
}