generateLink<P extends StandardPage<R> , R extends Object?> method
Retrieve a deep link for the specified pageData (when the page that retrieves the deep link does not return a value).
P is the type of the destination page, R is the type of page data, and they should be consistent with what you have set in your StandardPage.
Implementation
String? generateLink<P extends StandardPage<R>, R extends Object?>(
R pageData,
) {
return delegate?.getPageFactory<P, R, void>().linkGenerator?.call(pageData);
}