ActorInputBean constructor

ActorInputBean({
  1. List<String>? group,
  2. List<String>? groupId,
  3. List<String>? user,
})

Implementation

ActorInputBean(
    {List<String>? group, List<String>? groupId, List<String>? user})
    : group = group ?? [],
      groupId = groupId ?? [],
      user = user ?? [];