NestedBackIconPainter constructor

NestedBackIconPainter({
  1. required Color color,
  2. required double strokeWidth,
  3. int nestingLevel = 1,
  4. double animationStep = 1.0,
})

Implementation

NestedBackIconPainter({
  required this.color,
  required super.strokeWidth,
  this.nestingLevel = 1,
  this.animationStep = 1.0,
}) {
  paintObject.color = color;
}