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

@ -4,7 +4,7 @@ import 'package:lottie/lottie.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
const MyApp({super.key});
@override
Widget build(BuildContext context) {