chore: update package lints and apply fixes

This commit is contained in:
Gordon Hayes
2022-10-06 14:31:51 +02:00
parent fe029b35d0
commit 3ae658e204
29 changed files with 481 additions and 462 deletions
@@ -72,7 +72,7 @@ class HomePageArgs {
}
class HomePage extends StatefulWidget {
HomePage({
const HomePage({
Key? key,
required this.chatClient,
}) : super(key: key);
@@ -80,7 +80,7 @@ class HomePage extends StatefulWidget {
final StreamChatClient chatClient;
@override
_HomePageState createState() => _HomePageState();
State<HomePage> createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {