navigateToGroupList<T extends Object?> function
Navigate to TencentCloudChatContactGroupList
, while options should be TencentCloudChatContactGroupListOptions
Implementation
Future<T?>? navigateToGroupList<T extends Object?>({
required BuildContext context,
dynamic options,
}) {
return TencentCloudChatRouter().navigateTo<T>(
context: context,
routeName: TencentCloudChatRouteNames.groupList,
options: options,
);
}