goToCollectionListPage<T extends Object?> function
跳转到收藏消息页面
Implementation
Future<T?> goToCollectionListPage<T extends Object?>(BuildContext context) {
if (IMKitRouter.instance.enableGoRouter) {
return context.pushNamed(RouterConstants.PATH_CHAT_COLLECTION_LIST_PAGE);
}
return Navigator.pushNamed(
context, RouterConstants.PATH_CHAT_COLLECTION_LIST_PAGE);
}