setAllowFloorChange method

Builder<T> setAllowFloorChange(
  1. bool allow
)

Set whether the filtering is allowed to change the floor if no results are visible on the current floor

Implementation

Builder<T> setAllowFloorChange(bool allow) {
  _allowFloorChange = allow;
  return this;
}