createTicker method
Creates a ticker with the given callback.
The kind of ticker provided depends on the kind of ticker provider.
Implementation
@override
Ticker createTicker(TickerCallback onTick) {
Ticker _ticker =
Ticker(onTick, debugLabel: kDebugMode ? 'created by $this' : null);
_tickers.add(_ticker);
return _ticker;
}