NavigationHandler constructor

const NavigationHandler({
  1. required void openScreen(
    1. Widget child
    ),
  2. required void closeScreen(
    1. BuildContext context
    ),
})

Implementation

const NavigationHandler({
  required this.openScreen,
  required this.closeScreen,
});