setSourceAccount method

AllowTrustOperationBuilder setSourceAccount(
  1. String sourceAccountId
)

Set source account of this operation

Implementation

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