[tools] Fix plugin_ffi template lint violation (#115356)

Closes: https://github.com/flutter/flutter/issues/115347
This commit is contained in:
Daco Harkes 2022-11-15 12:50:49 +01:00 committed by GitHub
parent 1f28f99a00
commit c37f255e8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -208,7 +208,7 @@ class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
_MyAppState createState() => _MyAppState();
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {