copyWith method
ContentRestrictionUpdateRestrictionsGroupItem
copyWith({
- ContentRestrictionUpdateRestrictionsGroupItemType? type,
- String? name,
- String? id,
Implementation
ContentRestrictionUpdateRestrictionsGroupItem copyWith(
{ContentRestrictionUpdateRestrictionsGroupItemType? type,
String? name,
String? id}) {
return ContentRestrictionUpdateRestrictionsGroupItem(
type: type ?? this.type,
name: name ?? this.name,
id: id ?? this.id,
);
}