generateLink<P extends StandardPage<R>, R extends Object?> method

String? generateLink<P extends StandardPage<R>, R extends Object?>(
  1. R pageData
)

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 standardAppPlugin.generateLink<P, R>(pageData);
}