mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-23 10:11:52 +03:00
Remove old commented code.
This commit is contained in:
parent
f86549738e
commit
2909df92d7
@ -16,18 +16,6 @@ abstract class FidoStateNotifier extends ApplicationStateNotifier<FidoState> {
|
||||
Future<PinResult> unlock(String pin);
|
||||
}
|
||||
|
||||
/*
|
||||
final fidoPinProvider =
|
||||
StateNotifierProvider.autoDispose.family<PinNotifier, bool, DevicePath>(
|
||||
(ref, devicePath) => throw UnimplementedError(),
|
||||
);
|
||||
|
||||
abstract class PinNotifier extends StateNotifier<bool> {
|
||||
PinNotifier(bool unlocked) : super(unlocked);
|
||||
Future<PinResult> unlock(String pin);
|
||||
}
|
||||
*/
|
||||
|
||||
abstract class LockedCollectionNotifier<T>
|
||||
extends StateNotifier<AsyncValue<List<T>>> {
|
||||
LockedCollectionNotifier() : super(const AsyncValue.loading());
|
||||
|
Loading…
Reference in New Issue
Block a user