copyWith method

ChatEventAutomaticTranslationToggled copyWith({
  1. bool? hasAutomaticTranslation,
})

Implementation

ChatEventAutomaticTranslationToggled copyWith({
  bool? hasAutomaticTranslation,
}) => ChatEventAutomaticTranslationToggled(
  hasAutomaticTranslation:
      hasAutomaticTranslation ?? this.hasAutomaticTranslation,
);