copyWith method
Implementation
RestrictionInfo copyWith({
String? restrictionReason,
bool? hasSensitiveContent,
}) => RestrictionInfo(
restrictionReason: restrictionReason ?? this.restrictionReason,
hasSensitiveContent: hasSensitiveContent ?? this.hasSensitiveContent,
);