LocalizationConfig constructor
Creates a LocalizationConfig instance.
Both defaultLocale and supportedLocales are required.
defaultLocale: The default locale for the application (e.g., "en_US", "es").supportedLocales: A list of supported locales (e.g.,"en", "es", "fr").
Implementation
LocalizationConfig({
required this.defaultLocale,
required this.supportedLocales,
});