NumberTickerTheme constructor

const NumberTickerTheme({
  1. Duration? duration,
  2. Curve? curve,
  3. TextStyle? style,
})

Creates a NumberTickerTheme with the specified styling options.

Parameters:

  • duration (Duration?, optional): Default animation duration for transitions.
  • curve (Curve?, optional): Default easing curve for animations.
  • style (TextStyle?, optional): Default text style for formatted display.

All parameters are optional and will fall back to widget-level defaults or system defaults when not specified.

Implementation

const NumberTickerTheme({this.duration, this.curve, this.style});