copyWith method

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

Implementation

ActorsMap copyWith(
    {List<String>? group, List<String>? groupId, List<String>? user}) {
  return ActorsMap(
    group: group ?? this.group,
    groupId: groupId ?? this.groupId,
    user: user ?? this.user,
  );
}