copyWith method

UpdateSavedNotificationSounds copyWith({
  1. List<int>? notificationSoundIds,
})

Implementation

UpdateSavedNotificationSounds copyWith({List<int>? notificationSoundIds}) =>
    UpdateSavedNotificationSounds(
      notificationSoundIds: notificationSoundIds ?? this.notificationSoundIds,
    );