LocaleWidget constructor

const LocaleWidget({
  1. Key? key,
  2. Widget child = const SizedBox(),
  3. List<Locale> supportedLocales = const [Locale('en', 'US')],
  4. Locale? defaultLocale,
})

Implementation

const LocaleWidget({
  super.key,
  this.child = const SizedBox(),
  this.supportedLocales = const [
    Locale('en', 'US'),
  ],
  this.defaultLocale,
});