BeamPage constructor

BeamPage({
  1. LocalKey? key,
  2. String? name,
  3. required Widget child,
  4. String? title,
  5. bool onPopPage(
    1. BuildContext context,
    2. BeamerDelegate<BeamState> delegate,
    3. BeamPage poppedPage
    ) = defaultOnPopPage,
  6. String? popToNamed,
  7. BeamPageType type = BeamPageType.material,
  8. PageRoute pageRouteBuilder(
    1. RouteSettings settings,
    2. Widget child
    )?,
  9. bool keepQueryOnPop = false,
})

Implementation

BeamPage({
  LocalKey? key,
  String? name,
  required this.child,
  this.title,
  this.onPopPage = defaultOnPopPage,
  this.popToNamed,
  this.type = BeamPageType.material,
  this.pageRouteBuilder,
  this.keepQueryOnPop = false,
}) : super(key: key, name: name);