ScreenApp constructor

const ScreenApp({
  1. Key? key,
  2. Symbol id = #general,
  3. required Screen entry,
  4. Future<bool> exitCallBack()?,
  5. bool showDebugBanner = false,
  6. bool showDebugSemantics = false,
  7. dynamic init()?,
})

Implementation

const ScreenApp({
  Key? key,
  this.id = #general,
  required this.entry,
  this.exitCallBack,
  this.showDebugBanner = false,
  this.showDebugSemantics = false,
  this.init,
}) : super(key: key);