navigateToUserProfileEdit<T extends Object?> function
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,
);
}