Clock constructor

const Clock({
  1. Key? key,
  2. required double radius,
  3. TextStyle? clockTextStyle,
  4. BoxDecoration? clockDecoration,
})

Implementation

const Clock(
    {Key? key,
    required this.radius,
    this.clockTextStyle,
    this.clockDecoration})
    : super(key: key);