Beamer constructor

const Beamer({
  1. Key? key,
  2. required BeamerDelegate routerDelegate,
  3. bool createBackButtonDispatcher = true,
  4. BackButtonDispatcher? backButtonDispatcher,
})

Creates a Beamer with specified properties.

routerDelegate is required because it handles the navigation within the "sub-navigation module" represented by this.

Implementation

const Beamer({
  Key? key,
  required this.routerDelegate,
  this.createBackButtonDispatcher = true,
  this.backButtonDispatcher,
}) : super(key: key);