LocalizationApp constructor

LocalizationApp({
  1. Key? key,
  2. Function? title,
  3. ThemeData? theme,
  4. Function? home,
  5. dynamic child(
    1. BuildContext
    )?,
})

Implementation

LocalizationApp({
  Key? key,
  this.title,
  this.theme,
  this.home,
  this.child,
}) : super(key: key);