setSourceAccount method

EndSponsoringFutureReservesOperationBuilder setSourceAccount(
  1. String sourceAccountId
)

Sets the source account for this operation represented by sourceAccountId.

Implementation

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