InteractableSvg constructor

const InteractableSvg({
  1. Key? key,
  2. required String svgAddress,
  3. required dynamic onChanged(
    1. Region? region
    ),
  4. double? width,
  5. double? height,
  6. Color? strokeColor,
  7. double? strokeWidth,
  8. Color? selectedColor,
  9. Color? dotColor,
  10. String? unSelectableId,
  11. bool? centerDotEnable,
  12. bool? centerTextEnable,
  13. TextStyle? centerTextStyle,
  14. bool? toggleEnable,
  15. bool? isMultiSelectable,
})

Implementation

const InteractableSvg({
  Key? key,
  required this.svgAddress,
  required this.onChanged,
  this.width,
  this.height,
  this.strokeColor,
  this.strokeWidth,
  this.selectedColor,
  this.dotColor,
  this.unSelectableId,
  this.centerDotEnable,
  this.centerTextEnable,
  this.centerTextStyle,
  this.toggleEnable,
  this.isMultiSelectable,
})  : _isFromWeb = false,
      _isString = false,
      fileName = "",
      super(key: key);