build method

Builds a PathPaymentStrictSendOperation.

Implementation

PathPaymentStrictSendOperation build() {
  PathPaymentStrictSendOperation operation = PathPaymentStrictSendOperation(
      _sendAsset, _sendAmount, _destination, _destAsset, _destMin, _path);
  if (_mSourceAccount != null) {
    operation.sourceAccount = _mSourceAccount;
  }
  return operation;
}