setSourceAccount method

ChangeTrustOperationBuilder setSourceAccount (
  1. String sourceAccount
)

Set source account of this operation.

Implementation

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