AppScreen constructor

const AppScreen({
  1. required Widget child,
  2. required String title,
  3. bool showBack = true,
  4. Key? key,
})

Implementation

const AppScreen({
  required this.child,
  required this.title,
  this.showBack = true,
  super.key,
});