getCik method

  1. @override
Future<int?> getCik(
  1. String ticker
)
override

Get the CIK (Central Index Key) for a ticker symbol.

Implementation

@override
Future<int?> getCik(String ticker) async {
  if (_tickerCache == null) {
    await _refreshTickerCache();
  }
  return _tickerCache?[ticker.toUpperCase()];
}