toStackRoute method

StackRouteBuilder toStackRoute({
  1. bool maintainState = true,
  2. bool onBeforeEnter(
    1. String newRoute
    )?,
})

Implementation

StackRouteBuilder toStackRoute({bool maintainState = true, bool Function(String newRoute)? onBeforeEnter}) =>
    StackRouteBuilder(builder: (_, __) => this, onBeforeEnter: onBeforeEnter, maintainState: maintainState);