navigateToGroupProfile<T extends Object?> function

Future<T?>? navigateToGroupProfile<T extends Object?>({
  1. required BuildContext context,
  2. dynamic options,
})

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,
  );
}