AutoTrackPageConfig<T extends Widget> constructor
AutoTrackPageConfig<T extends Widget> ({
- String? pageID,
- String? pagePath,
- bool ignore = false,
- String? pageTitle,
- PageWidgetFunc? isPageWidget,
Implementation
AutoTrackPageConfig({
this.pageID,
this.pagePath,
this.ignore = false,
this.pageTitle,
this.isPageWidget
}) {
isPageWidget ??= (pageWidget) => pageWidget is T;
}