MenuButtonPainter constructor

MenuButtonPainter({
  1. Color color = const Color.fromARGB(0, 0, 0, 0),
  2. double strokeWidth = 0,
  3. double animationStep = 0,
})

Implementation

MenuButtonPainter({
  Color color = const Color.fromARGB(0, 0, 0, 0),
  double strokeWidth = 0,
  this.animationStep = 0,
}) {
  iconPainter = MenuIconPainter(
      color: color, animationStep: animationStep, strokeWidth: strokeWidth);
}