setSourceAccount method
- String sourceAccount
Sets the source account for this operation represented by sourceAccount
.
Implementation
CreateAccountOperationBuilder setSourceAccount(String sourceAccount) {
checkNotNull(sourceAccount, "sourceAccount cannot be null");
_mSourceAccount = MuxedAccount(sourceAccount, null);
return this;
}