Unverified Commit 4d8d0f56 authored by Andrey Gordeev's avatar Andrey Gordeev Committed by GitHub

Expect a generic State instead of implementation (#57500)

parent 89a00fc7
...@@ -107,7 +107,7 @@ class SnackBarAction extends StatefulWidget { ...@@ -107,7 +107,7 @@ class SnackBarAction extends StatefulWidget {
final VoidCallback onPressed; final VoidCallback onPressed;
@override @override
_SnackBarActionState createState() => _SnackBarActionState(); State<SnackBarAction> createState() => _SnackBarActionState();
} }
class _SnackBarActionState extends State<SnackBarAction> { class _SnackBarActionState extends State<SnackBarAction> {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment