copyWith method

Implementation

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