InteractableSvg.network constructor

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

Implementation

const InteractableSvg.network(
    {required this.fileName,
    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 = true,
      _isString = false,
      super(key: key);