The following code contains a class definition that uses annotations from Project Lombok to reduce boilerplate code. However, it currently does not compile. The programmer who wrote this code forgot to account for something. Complete the line of code that begins with @NoArgsConstructor so that it will compile. Include the annotation in your answer.
@Data
@NoArgsConstructor
public class Dragon {
private final String name;
private final DragonType dragonType;
private int currentLevel;
}