copyWith method

Implementation

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