copyWith method

SetReactionNotificationSettings copyWith({
  1. ReactionNotificationSettings? notificationSettings,
})

Implementation

SetReactionNotificationSettings copyWith({
  ReactionNotificationSettings? notificationSettings,
}) => SetReactionNotificationSettings(
  notificationSettings: notificationSettings ?? this.notificationSettings,
);