copyWith method

RemoveSavedNotificationSound copyWith({
  1. int? notificationSoundId,
})

Implementation

RemoveSavedNotificationSound copyWith({
  int? notificationSoundId,
}) =>
    RemoveSavedNotificationSound(
      notificationSoundId: notificationSoundId ?? this.notificationSoundId,
    );