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