ClockBackgroundWidget constructor

const ClockBackgroundWidget({
  1. Key? key,
  2. required double radius,
  3. TextStyle? textStyle,
  4. Color? minuteStickColor = Colors.black,
  5. Color? hourStickColor = Colors.black,
})

Implementation

const ClockBackgroundWidget({
  Key? key,
  required this.radius,
  this.textStyle,
  this.minuteStickColor = Colors.black,
  this.hourStickColor = Colors.black,
}) : super(key: key);