DistrictPickerMap constructor

DistrictPickerMap({
  1. Key? key,
  2. required String map,
  3. required dynamic onChanged(
    1. District? district
    ),
  4. double? width,
  5. double? height,
  6. Color? strokeColor,
  7. Color? selectedColor,
  8. Color? dotColor,
  9. bool? actAsToggle,
})

Implementation

DistrictPickerMap(
    {Key? key,
      required this.map,
      required this.onChanged,
      this.width,
      this.height,
      this.strokeColor,
      this.selectedColor,
      this.dotColor,
      this.actAsToggle}) : super(key: key);