Is there an intelliJ IDEA function or plugin that ...
# getting-started
h
Is there an intelliJ IDEA function or plugin that generates an object instance with all members? So let's say I have a
Dog
class with some members. And I want to create a new one in code. I'd like something that creates this with the press of a button:
Copy code
Dog(
    name = TODO(),
    breed = TODO(),
    owner = TODO(),
)
s
h
Ah auto fill, thank you, I didn't come up with that search term. That's exactly what I wanted. Thanks.