setMuxedSourceAccount method

ChangeTrustOperationBuilder setMuxedSourceAccount (
  1. MuxedAccount sourceAccount
)

Set muxed source account of this operation.

Implementation

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