FdcApp constructor

const FdcApp({
  1. Key? key,
  2. FdcFormatSettings? formatSettings,
  3. FdcFormatResolver formatResolver = const FdcDefaultFormatResolver(),
  4. FdcTranslations? translations,
  5. FdcTranslationResolver translationResolver = const FdcDefaultTranslationResolver(),
  6. FdcThemeData? theme,
  7. FdcExportStyle exportStyle = const FdcExportStyle(),
  8. FdcFocusOptions focus = const FdcFocusOptions(),
  9. required Widget child,
})

Creates a FdcApp.

Implementation

const FdcApp({
  super.key,
  this.formatSettings,
  this.formatResolver = const FdcDefaultFormatResolver(),
  this.translations,
  this.translationResolver = const FdcDefaultTranslationResolver(),
  this.theme,
  this.exportStyle = const FdcExportStyle(),
  this.focus = const FdcFocusOptions(),
  required this.child,
});