startAfter property

Duration startAfter
final

Start scrolling after this duration after the widget is first displayed.

Sample code

This Marquee starts scrolling one second after being displayed.

Marquee(
  startAfter: const Duration(seconds: 1),
  text: 'Starts one second after being displayed.',
)

Implementation

final Duration startAfter;