JumpingDotEffect constructor
const
JumpingDotEffect({
- Color activeDotColor = Colors.indigo,
- double jumpScale = 1.4,
- double verticalOffset = 0.0,
- double offset = 16.0,
- double dotWidth = 16.0,
- double dotHeight = 16.0,
- double spacing = 8.0,
- double radius = 16,
- Color dotColor = Colors.grey,
- double strokeWidth = 1.0,
- PaintingStyle paintStyle = PaintingStyle.fill,
Default constructor
Implementation
const JumpingDotEffect({
Color activeDotColor = Colors.indigo,
this.jumpScale = 1.4,
this.verticalOffset = 0.0,
double offset = 16.0,
double dotWidth = 16.0,
double dotHeight = 16.0,
double spacing = 8.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);