TimeView constructor
const
TimeView({
- required int countdown,
- required BuildChild? builder,
- TimeViewController? controller,
- bool enableCancel = false,
- Duration duration = const Duration(seconds: 1),
- BuildCompleter? buildCompleter,
- Key? key,
Implementation
const TimeView(
{required this.countdown,
required this.builder,
this.controller,
this.enableCancel = false,
this.duration = const Duration(seconds: 1),
this.buildCompleter,
Key? key})
: super(key: key);