copyWith method
AddContentRestrictionRestrictionsGroupItem
copyWith({
- AddContentRestrictionRestrictionsGroupItemType? type,
- String? name,
Implementation
AddContentRestrictionRestrictionsGroupItem copyWith(
{AddContentRestrictionRestrictionsGroupItemType? type, String? name}) {
return AddContentRestrictionRestrictionsGroupItem(
type: type ?? this.type,
name: name ?? this.name,
);
}