link property

String? get link

Get the deep link for this page. Returns null if StandardPageFactory.linkGenerator is not defined for this page.

Implementation

String? get link =>
    _factory.linkGenerator != null ? _factory.linkGenerator!(pageData) : null;