MapTileSwitcher constructor

const MapTileSwitcher({
  1. Key? key,
  2. required MapTileSwitchController controller,
  3. BoxDecoration? decoration,
  4. Color? activeTileSelectorColor,
  5. Color? inactiveTileSelectorColor,
  6. double? tileSelectorBorderWidth,
  7. Widget? titleWidget,
})

Implementation

const MapTileSwitcher({
  super.key,
  required this.controller,
  this.decoration,
  this.activeTileSelectorColor,
  this.inactiveTileSelectorColor,
  this.tileSelectorBorderWidth,

  this.titleWidget,
});