all property

List<Language> get all

All supported languages for the selected Inno Setup install.

Throws an InnoBundleError if loadLanguages has not been called yet.

Implementation

static List<Language> get all {
  if (_cachedLangs.isEmpty) {
    throw InnoBundleError(
        'Language.loadLanguages() must be called before accessing Language.all.');
  }
  return _cachedLangs;
}