routeEntryExists method

bool routeEntryExists(
  1. AFScreenID screen, {
  2. bool includePrior = true,
})

Implementation

bool routeEntryExists(AFScreenID screen, { bool includePrior = true }) {
  final seg = screenHierarchy.findSegmentFor(screen, includePrior: includePrior);
  return (seg != null);
}