RectanglePainter constructor

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

Implementation

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