TickerMode constructor Null safety
Creates a widget that enables or disables tickers.
The enabled argument must not be null.
Implementation
const TickerMode({
super.key,
required this.enabled,
required this.child,
}) : assert(enabled != null);