YesOrNo constructor

YesOrNo({
  1. double? svgWidth,
  2. double? svgHeight,
  3. double? outerContainerWidth,
  4. double? outerContainerHeight,
  5. double? fontSize,
  6. double? circleFontIndicatorSize,
  7. String? customSvgSelected,
  8. String? customSvgUnSelected,
})

Implementation

YesOrNo({
  this.svgWidth,
  this.svgHeight,
  this.outerContainerWidth,
  this.outerContainerHeight,
  this.fontSize,
  this.circleFontIndicatorSize,
  this.customSvgSelected,
  this.customSvgUnSelected,
});