chore: Update dependencies

This commit is contained in:
Christian Pauly 2022-08-14 16:59:21 +02:00
commit 7a74a8a93f
52 changed files with 163 additions and 175 deletions

View file

@ -14,10 +14,10 @@ class EncryptionButton extends StatefulWidget {
final Room room;
const EncryptionButton(this.room, {Key? key}) : super(key: key);
@override
_EncryptionButtonState createState() => _EncryptionButtonState();
EncryptionButtonState createState() => EncryptionButtonState();
}
class _EncryptionButtonState extends State<EncryptionButton> {
class EncryptionButtonState extends State<EncryptionButton> {
StreamSubscription? _onSyncSub;
void _enableEncryptionAction() async {