AppHomePage constructor

const AppHomePage({
  1. Key? key,
  2. required Widget childPage,
  3. String title = '',
})

Initialise widget variables.

Implementation

const AppHomePage({super.key, required this.childPage, this.title = ''});