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