FlApp constructor

const FlApp({
  1. Key? key,
  2. required String title,
  3. required FlRouter router,
  4. required FlTheme theme,
  5. Widget builder(
    1. BuildContext,
    2. Widget?
    )?,
})

Implementation

const FlApp({
  super.key,
  required this.title,
  required this.router,
  required this.theme,
  this.builder,
});