MyHomePage constructor

const MyHomePage({
  1. Key? key,
  2. required String title,
  3. bool isTesting = false,
})

Implementation

const MyHomePage({super.key, required this.title, this.isTesting = false});