isMatch method
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));
Test if the page matches.
@override
bool isMatch(PageWrapper pageWrapper) =>
(null != _paths && _paths!.any((path) => path == pageWrapper.path)) ||
(null != _ids && _ids!.any((id) => id == pageWrapper.id));