setSourceAccount method

ChangeTrustOperationBuilder setSourceAccount(
  1. String sourceAccountId
)

Set source account of this operation.

Implementation

ChangeTrustOperationBuilder setSourceAccount(String sourceAccountId) {
  MuxedAccount? sa = MuxedAccount.fromAccountId(sourceAccountId);
  _mSourceAccount = checkNotNull(sa, "invalid sourceAccountId");
  return this;
}