NextBackStack constructor

NextBackStack({
  1. Key? key,
  2. required NextBackStackController controller,
  3. required Widget child,
  4. VoidCallback? onBack,
  5. bool showHeader = false,
})

Implementation

NextBackStack(
    {super.key,
    required this.controller,
    required this.child,
    this.onBack,
    this.showHeader = false});