copyWith method
AddContentRestriction
copyWith({
- AddContentRestrictionOperation? operation,
- AddContentRestrictionRestrictions? restrictions,
Implementation
AddContentRestriction copyWith(
{AddContentRestrictionOperation? operation,
AddContentRestrictionRestrictions? restrictions}) {
return AddContentRestriction(
operation: operation ?? this.operation,
restrictions: restrictions ?? this.restrictions,
);
}