copyWith method

Implementation

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