setSourceAccount method

ManageSellOfferOperationBuilder setSourceAccount(
  1. String sourceAccountId
)

Sets the source account for this operation.

Implementation

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