copyWith method
ReactionNotificationSettings
copyWith({
- ReactionNotificationSource? messageReactionSource,
- ReactionNotificationSource? storyReactionSource,
- ReactionNotificationSource? pollVoteSource,
- int? soundId,
- bool? showPreview,
Implementation
ReactionNotificationSettings copyWith({
ReactionNotificationSource? messageReactionSource,
ReactionNotificationSource? storyReactionSource,
ReactionNotificationSource? pollVoteSource,
int? soundId,
bool? showPreview,
}) => ReactionNotificationSettings(
messageReactionSource: messageReactionSource ?? this.messageReactionSource,
storyReactionSource: storyReactionSource ?? this.storyReactionSource,
pollVoteSource: pollVoteSource ?? this.pollVoteSource,
soundId: soundId ?? this.soundId,
showPreview: showPreview ?? this.showPreview,
);