CreateGroupHandler typedef
CreateGroupHandler =
Future<CreateGroupInfo?> Function(BuildContext context, List<ChatUIKitProfile> selectedProfiles)
创建群组拦截器,当在创建群组页面点击创建后回调给你当前选择的用户,你需要返回一个 CreateGroupInfo 对象,如果返回 null 将会取消创建。
Implementation
typedef CreateGroupHandler = Future<CreateGroupInfo?> Function(
BuildContext context,
List<ChatUIKitProfile> selectedProfiles,
);