copyWith method
Implementation
ContentRestrictionExpandable copyWith(
{String? restrictions, String? content}) {
return ContentRestrictionExpandable(
restrictions: restrictions ?? this.restrictions,
content: content ?? this.content,
);
}