build method

Builds a SetOptionsOperation.

Implementation

SetOptionsOperation build() {
  SetOptionsOperation operation = new SetOptionsOperation(
      _inflationDestination,
      _clearFlags,
      _setFlags,
      _masterKeyWeight,
      _lowThreshold,
      _mediumThreshold,
      _highThreshold,
      _homeDomain,
      _signer,
      _signerWeight);
  if (_sourceAccount != null) {
    operation.sourceAccount = _sourceAccount;
  }
  return operation;
}