supportedLocales top-level property

List<String> supportedLocales

Getter for supported locales.

If _supportedLocales is null, initializes it with the keys from the dateTimeSymbolMap function, casting them to a list of strings.

Implementation

List<String> get supportedLocales {
  _supportedLocales ??=
      dateTimeSymbolMap().keys.toList().cast<String>().toList();

  return _supportedLocales!;
}