navigateToFriendInfo<T extends Object?> function
Implementation
Future<T?>? navigateToFriendInfo<T extends Object?>({
required BuildContext context,
dynamic options,
}) {
return TencentCloudChatRouter().navigateTo<T>(
context: context,
routeName: TencentCloudChatRouteNames.friendInfo,
options: options,
);
}