RPTimerStep constructor
RPTimerStep({})
Creates a RPTimerStep with an identifier
, title
and timeout
.
The RPTimerStep is a step in which the user waits for timeout
before being allowed to proceed. If showTime
is true, a count down is shown.
When the time is up, a sound is played if playSound
is true and
automatically moves to the next step, if autoSkip
is true.
Implementation
RPTimerStep({
required super.identifier,
required super.title,
super.optional,
required this.timeout,
this.playSound = false,
this.autoSkip = false,
this.showTime = true,
super.footnote,
});