TimingView constructor

const TimingView({
  1. Key? key,
  2. required int sec,
  3. dynamic onFinished()?,
})

Implementation

const TimingView({
  Key? key,
  required this.sec,
  this.onFinished,
}) : super(key: key);