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
2024-10-05 11:38:16 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
73827aea99862a09d45a098be46300eb613b215d
73827aea
1 parent
816c0594
fix error in docs
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
lib/src/mobile_scanner_controller.dart
lib/src/objects/barcode_capture.dart
lib/src/mobile_scanner_controller.dart
View file @
73827ae
...
...
@@ -75,8 +75,7 @@ class MobileScannerController extends ValueNotifier<MobileScannerState> {
/// If this is empty, all supported formats are detected.
final
List
<
BarcodeFormat
>
formats
;
/// Whether scanned barcodes should contain the image
/// that is embedded into the barcode.
/// Whether the [BarcodeCapture.image] bytes should be provided.
///
/// If this is false, [BarcodeCapture.image] will always be null.
///
...
...
lib/src/objects/barcode_capture.dart
View file @
73827ae
...
...
@@ -32,8 +32,6 @@ class BarcodeCapture {
/// This is the data that was used to detect the available [barcodes], the input [image] and the [size].
final
Object
?
raw
;
/// The size of the input [image].
///
/// If [image] is null, this will be [Size.zero].
/// The size of the camera input [image].
final
Size
size
;
}
...
...
Please
register
or
login
to post a comment