MinMaxZoomPreference constructor

const MinMaxZoomPreference(
  1. double? minZoom,
  2. double? maxZoom
)

Implementation

const MinMaxZoomPreference(this.minZoom, this.maxZoom)
    : assert(minZoom == null || maxZoom == null || minZoom <= maxZoom);