Clock constructor
const
Clock({
- Key? key,
- required double radius,
- TextStyle? clockTextStyle,
- BoxDecoration? clockDecoration,
Implementation
const Clock(
{Key? key,
required this.radius,
this.clockTextStyle,
this.clockDecoration})
: super(key: key);