setShowInfoWindow method

Builder<T> setShowInfoWindow(
  1. bool show
)

Set whether to open the info window if a single result is returned

Implementation

Builder<T> setShowInfoWindow(bool show) {
  _showInfoWindow = show;
  return this;
}