build method

Builds a ManageSellOfferOperation.

Implementation

ManageSellOfferOperation build() {
  ManageSellOfferOperation operation = new ManageSellOfferOperation(
      _selling, _buying, _amount, _price, _offerId);
  if (_mSourceAccount != null) {
    operation.sourceAccount = _mSourceAccount;
  }
  return operation;
}