eye static method

KinIcon eye({
  1. Key? key,
  2. Color? color,
  3. double size = 24,
  4. double? strokeWidth,
})

Eye — visibility indicator.

Implementation

static KinIcon eye({Key? key, Color? color, double size = 24, double? strokeWidth}) =>
    KinIcon._(key: key, painterFactory: _EyePainter.new, color: color, size: size, strokeWidth: strokeWidth);