Enable use_super_parameters lint (#242)

This commit is contained in:
Xavier H
2022-11-10 14:14:28 +01:00
committed by GitHub
parent 8ce429cdf4
commit a333a42f01
56 changed files with 108 additions and 143 deletions

View File

@ -10,7 +10,7 @@ import 'package:path_provider/path_provider.dart';
void main() => runApp(const MyApp());
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();