build: Update packages and flutter super.key refactoring

This commit is contained in:
krille-chan 2023-10-28 13:03:16 +02:00
commit eca4825c70
No known key found for this signature in database
129 changed files with 294 additions and 324 deletions

View file

@ -38,10 +38,9 @@ import 'pip/pip_view.dart';
class _StreamView extends StatelessWidget {
const _StreamView(
this.wrappedStream, {
Key? key,
this.mainView = false,
required this.matrixClient,
}) : super(key: key);
});
final WrappedMediaStream wrappedStream;
final Client matrixClient;
@ -128,8 +127,8 @@ class Calling extends StatefulWidget {
required this.client,
required this.callId,
this.onClear,
Key? key,
}) : super(key: key);
super.key,
});
@override
MyCallingPage createState() => MyCallingPage();

View file

@ -15,13 +15,13 @@ class PIPView extends StatefulWidget {
) builder;
const PIPView({
Key? key,
super.key,
required this.builder,
this.initialCorner = PIPViewCorner.topRight,
this.floatingWidth,
this.floatingHeight,
this.avoidKeyboard = true,
}) : super(key: key);
});
@override
PIPViewState createState() => PIPViewState();