Get the CIK (Central Index Key) for a ticker symbol.
@override Future<int?> getCik(String ticker) async { if (_tickerCache == null) { await _refreshTickerCache(); } return _tickerCache?[ticker.toUpperCase()]; }