Back to Flutter Boost

isFlutterPage method

doc/api/boost_navigator/BoostNavigator/isFlutterPage.html

5.0.2458 B
Original Source

isFlutterPage method

boolisFlutterPage(

  1. String name

)

Whether this page with the given name is a flutter page

If the name of route can be found in route table then return true, otherwise return false.

Implementation

bool isFlutterPage(String name) =>
    routeFactory(RouteSettings(name: name), null) != null;