class FooPage extends StatefulWidget {
const FooPage(Key? key) : super(key: key);
@override
State<FooPage> createState() => _FooPageState();
}
Is there any dart fix xyz command I can use to convert all the super(key:key) calls to super.key?
In other words:
Before:
const FooPage({Key? key}) : super(key: key);
After:
const FooPage({super.key});