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