NomoApp constructor

const NomoApp({
  1. required NomoThemeDelegate<Object, Object> themeDelegate,
  2. required RouterConfig<Object> routerConfig,
  3. required Color color,
  4. required Iterable<Locale> supportedLocales,
  5. Key? key,
  6. LocalizationsDelegate? localizationDelegate,
  7. Locale? currentLocale,
  8. String translator(
    1. String value
    )?,
  9. Widget appWrapper(
    1. BuildContext context,
    2. Widget app
    )?,
})

Implementation

const NomoApp({
  required this.themeDelegate,
  required this.routerConfig,
  required this.color,
  required this.supportedLocales,
  super.key,
  this.localizationDelegate,
  this.currentLocale,
  this.translator,
  this.appWrapper,
});