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