copyWith method

ChatEventHasAggressiveAntiSpamEnabledToggled copyWith({
  1. bool? hasAggressiveAntiSpamEnabled,
})

Implementation

ChatEventHasAggressiveAntiSpamEnabledToggled copyWith({
  bool? hasAggressiveAntiSpamEnabled,
}) => ChatEventHasAggressiveAntiSpamEnabledToggled(
  hasAggressiveAntiSpamEnabled:
      hasAggressiveAntiSpamEnabled ?? this.hasAggressiveAntiSpamEnabled,
);