TranslationProvider constructor

const TranslationProvider({
  1. Key? key,
  2. Map? initial,
  3. TranslationDelegate? delegate,
  4. Object? defaultLocale,
  5. bool notifiable = false,
  6. bool showLogs = false,
  7. Iterable supportedLocales = const [],
  8. Set<String>? paths,
  9. required Widget child,
})

Implementation

const TranslationProvider({
  super.key,
  this.initial,
  this.delegate,
  this.defaultLocale,
  this.notifiable = false,
  this.showLogs = false,
  this.supportedLocales = const [],
  this.paths,
  required this.child,
});