copyWith method

Implementation

AddContentRestrictionRestrictions copyWith(
    {List<AddContentRestrictionRestrictionsUserItem>? user,
    List<AddContentRestrictionRestrictionsGroupItem>? group}) {
  return AddContentRestrictionRestrictions(
    user: user ?? this.user,
    group: group ?? this.group,
  );
}