RegionPainter constructor

RegionPainter({
  1. required Region region,
  2. required List<Region> selectedRegion,
  3. Color? selectedColor,
  4. Color? strokeColor,
  5. Color? dotColor,
  6. bool? centerDotEnable,
  7. bool? centerTextEnable,
  8. TextStyle? centerTextStyle,
  9. double? strokeWidth,
  10. String? unSelectableId,
})

Implementation

RegionPainter({
  required this.region,
  required this.selectedRegion,
  this.selectedColor,
  this.strokeColor,
  this.dotColor,
  this.centerDotEnable,
  this.centerTextEnable,
  this.centerTextStyle,
  this.strokeWidth,
  this.unSelectableId,
});