copyWith method

Implementation

ContentRestrictionUpdate copyWith(
    {ContentRestrictionUpdateOperation? operation,
    ContentRestrictionUpdateRestrictions? restrictions,
    Content? content}) {
  return ContentRestrictionUpdate(
    operation: operation ?? this.operation,
    restrictions: restrictions ?? this.restrictions,
    content: content ?? this.content,
  );
}