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