isMatch method

  1. @override
bool isMatch(
  1. PageWrapper pageWrapper
)
override

Test if the page matches.

Implementation

@override
bool isMatch(PageWrapper pageWrapper) =>
    (null != _paths && _paths!.any((path) => path == pageWrapper.path)) ||
    (null != _ids && _ids!.any((id) => id == pageWrapper.id));