DevKit constructor

const DevKit({
  1. Key? key,
  2. List<Pluggable>? pluginsList,
  3. required Widget child,
  4. bool enable = true,
  5. Iterable<Locale>? supportedLocales,
  6. Iterable<LocalizationsDelegate> localizationsDelegates = defaultLocalizationsDelegates,
})

Implementation

const DevKit({
  super.key,
  this.pluginsList,
  required this.child,
  this.enable = true,
  this.supportedLocales,
  this.localizationsDelegates = defaultLocalizationsDelegates,
});