fluffychat/lib/pages/bootstrap/view_model/bootstrap_state.dart
2026-03-05 09:08:13 +01:00

14 lines
407 B
Dart

import 'package:matrix/encryption.dart';
import 'package:matrix/matrix.dart';
class BootstrapViewModelState {
String? recoveryKey;
bool isLoading = false;
Object? unlockWithError;
({bool connected, bool initialized})? cryptoIdentityState;
bool reset = false;
KeyVerification? keyVerification;
List<DeviceKeys>? connectedDevices;
bool recoveryKeyStored = false;
bool obscureText = true;
}