delayBefore property

Duration? delayBefore
final

Delay before first animation round.

Default is Duration.zero.

Example:

TextScroll(
  'Start animation after 1 sec delay',
  delayBefore: Duration(seconds: 1),
)

Implementation

final Duration? delayBefore;