ScaleEffect constructor

const ScaleEffect({
  1. Color activeDotColor = Colors.indigo,
  2. PaintingStyle activePaintStyle = PaintingStyle.fill,
  3. double scale = 1.4,
  4. double activeStrokeWidth = 1.0,
  5. double offset = 16.0,
  6. double dotWidth = 16.0,
  7. double dotHeight = 16.0,
  8. double spacing = 10.0,
  9. double radius = 16,
  10. Color dotColor = Colors.grey,
  11. double strokeWidth = 1.0,
  12. PaintingStyle paintStyle = PaintingStyle.fill,
})

Default constructor

Implementation

const ScaleEffect({
  Color activeDotColor = Colors.indigo,
  this.activePaintStyle = PaintingStyle.fill,
  this.scale = 1.4,
  this.activeStrokeWidth = 1.0,
  double offset = 16.0,
  double dotWidth = 16.0,
  double dotHeight = 16.0,
  double spacing = 10.0,
  double radius = 16,
  Color dotColor = Colors.grey,
  double strokeWidth = 1.0,
  PaintingStyle paintStyle = PaintingStyle.fill,
}) : super(
        dotWidth: dotWidth,
        dotHeight: dotHeight,
        spacing: spacing,
        radius: radius,
        strokeWidth: strokeWidth,
        paintStyle: paintStyle,
        dotColor: dotColor,
        activeDotColor: activeDotColor,
      );