timer static method

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

Minimal timer — circle with two clock hands.

Implementation

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