RectanglePainter constructor

RectanglePainter({
  1. required String text,
  2. required TextStyle textStyle,
  3. required Color rectangleColor,
  4. required double animationValue,
  5. SketchyAnimationMode animationMode = SketchyAnimationMode.organic,
})

Implementation

RectanglePainter({
  required this.text,
  required this.textStyle,
  required this.rectangleColor,
  required this.animationValue,
  this.animationMode = SketchyAnimationMode.organic,
});