Expect a generic State instead of implementation (#57500)

This commit is contained in:
Andrey Gordeev 2020-05-18 22:37:02 +03:00 committed by GitHub
parent 89a00fc745
commit 4d8d0f5604
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -107,7 +107,7 @@ class SnackBarAction extends StatefulWidget {
final VoidCallback onPressed;
@override
_SnackBarActionState createState() => _SnackBarActionState();
State<SnackBarAction> createState() => _SnackBarActionState();
}
class _SnackBarActionState extends State<SnackBarAction> {