LoadingPage constructor

const LoadingPage({
  1. Key? key,
  2. required String title,
  3. required VoidCallback backButton,
})

Implementation

const LoadingPage({
  super.key,
  required this.title,
  required this.backButton,
});