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