The code below uses Lombok to reduce boilerplate code, but it is not the most efficient use of Lombok. Fill in the blank with the annotation that will reduce the code size even more.
@Getter
@Setter
@ToString
@EqualsAndHashCode
@RequiredArgsConstructor
public class Dog {
public static void main(String[] args) {
}
}