setHomeDomain method

SetOptionsOperationBuilder setHomeDomain(
  1. String homeDomain
)

Sets the account's home domain address used in Federation.

Implementation

SetOptionsOperationBuilder setHomeDomain(String homeDomain) {
  if (homeDomain.length > 32) {
    throw new Exception("Home domain must be <= 32 characters");
  }
  this._homeDomain = homeDomain;
  return this;
}