pauseAfterRound property

Duration pauseAfterRound
final

After each round, a pause of this duration occurs.

Sample code

After every round, this marquee pauses for one second.

Marquee(
  pauseAfterRound: const Duration(seconds: 1),
  text: 'Pausing for some time after every round.',
)

See also:

Implementation

final Duration pauseAfterRound;