navigateToUserProfileEdit<T extends Object?> function

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

Navigate to TencentCloudChatUserProfileEdit, while options should be TencentCloudChatUserProfileEditOptions

Implementation

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