mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-24 03:06:45 +03:00
6 lines
285 B
Dart
6 lines
285 B
Dart
/// Status of the scanning process
|
|
/// scanning - showing preview and scanning it for finding credential QR code
|
|
/// error - a QR code has been found but is not a credential
|
|
/// success - a QR code has been found and is a usable credential
|
|
enum ScanStatus { scanning, error, success }
|