BasicApp constructor

const BasicApp({
  1. Key? key,
  2. List<SingleChildWidget> providers = const [],
  3. required Widget home,
  4. ConsumerBuilder? consumer,
  5. ValueCallback<BuildContext>? initState,
  6. VoidCallback? dispose,
  7. VoidCallback? inactive,
  8. VoidCallback? paused,
  9. VoidCallback? detached,
  10. VoidCallback? resumed,
  11. String? title,
})

Implementation

const BasicApp({
  super.key,
  this.providers = const [],
  required this.home,
  this.consumer,
  this.initState,
  this.dispose,
  this.inactive,
  this.paused,
  this.detached,
  this.resumed,
  this.title,
});