createFriendGroup method Null safety

Future<V2TimValueCallback<List<V2TimFriendOperationResult>>> createFriendGroup(
  1. {required String groupName,
  2. List<String>? userIDList}
)

Create a friend list

Parameter

groupName	Group name
userIDList	Friend userID list to add to the group

Implementation

Future<V2TimValueCallback<List<V2TimFriendOperationResult>>>
    createFriendGroup({
  required String groupName,
  List<String>? userIDList,
}) async {
  return ImFlutterPlatform.instance
      .createFriendGroup(groupName: groupName, userIDList: userIDList);
}