MapWidget constructor

const MapWidget({
  1. Key? key,
  2. required List<CityItem> cityItems,
  3. ClickCallback? clickCallback,
  4. Color selectedStorkeColor = Colors.white,
  5. Color background = const Color(0xFFF2F2F2),
  6. String defaultToast = "",
})

Implementation

const MapWidget(
    {Key? key,
    required this.cityItems,
    this.clickCallback,
    this.selectedStorkeColor = Colors.white,
    this.background = const Color(0xFFF2F2F2),
    this.defaultToast = ""})
    : super(key: key);