getPageKey method
Get the key set for this page, as configured for this page.
Implementation
LocalKey getPageKey(Object? pageData) {
final tPageData = pageData ?? pageDataWhenNull?.call();
if (tPageData is R) {
return (_pageKey ?? _defaultPageKey)(tPageData);
}
throw Never;
}