goGlobalSearchPage<T extends Object?> function
Implementation
Future<T?> goGlobalSearchPage<T extends Object?>(
BuildContext context,
) {
if (IMKitRouter.instance.enableGoRouter) {
return context.pushNamed(RouterConstants.PATH_GLOBAL_SEARCH_PAGE);
}
return Navigator.pushNamed(context, RouterConstants.PATH_GLOBAL_SEARCH_PAGE);
}