VideoProgress constructor

const VideoProgress({
  1. Key? key,
  2. required Duration current,
  3. required Duration total,
})

Implementation

const VideoProgress({
  Key? key,
  required this.current,
  required this.total,
}) : super(key: key);