copyWith method

Implementation

ContentRestrictionUpdateRestrictions copyWith(
    {List<ContentRestrictionUpdateRestrictionsGroupItem>? group,
    dynamic user}) {
  return ContentRestrictionUpdateRestrictions(
    group: group ?? this.group,
    user: user ?? this.user,
  );
}