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