KntAppWrapper constructor

const KntAppWrapper({
  1. Key? key,
  2. required KntAppBuilder appBuilder,
  3. required List<Locale> supportedLocales,
  4. String? localizedPath,
  5. double? designWidth,
  6. double? designHeight,
  7. bool debugShowPreviewDevice = true,
})

Implementation

const KntAppWrapper({
  super.key,
  required this.appBuilder,
  required this.supportedLocales,
  this.localizedPath,
  this.designWidth,
  this.designHeight,
  this.debugShowPreviewDevice = true,
});