Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
mobile_scanner
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Navaron Bracke
2023-11-08 14:45:42 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4d4cf733525ead473cc28f7e3ca62af81e33f8d4
4d4cf733
1 parent
9dda3bac
add controller already initialized error code
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
lib/src/enums/mobile_scanner_error_code.dart
lib/src/enums/mobile_scanner_error_code.dart
View file @
4d4cf73
import
'package:mobile_scanner/src/mobile_scanner_controller.dart'
;
/// This enum defines the different error codes for the mobile scanner.
enum
MobileScannerErrorCode
{
/// The controller was already started.
///
/// The controller should be stopped using [MobileScannerController.stop],
/// before restarting it.
controllerAlreadyInitialized
,
/// The controller was used
/// while it was not yet initialized using [MobileScannerController.start].
controllerUninitialized
,
...
...
Please
register
or
login
to post a comment