강의에서는 StatefulWiget를 자동완성으로 만들면 기본생성자가 const HomeScreen({Key? key}) : super(key: key);인데, IntelliJ에서 자동완성시키면 아래와같이 const Example({super.key}); 로 더 짧은 기본생성자가 나오네요.
const HomeScreen({Key? key}) : super(key: key);
const Example({super.key});
이 두가지 생성자는 역할이 다른건가요?