setSourceAccount method

CreatePassiveSellOfferOperationBuilder setSourceAccount(
  1. String sourceAccountId
)

Sets the source account for this operation.

Implementation

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