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