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-06-30 08:12:15 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6c55075412e331d8ac5900d47ff4fb1b0515e562
6c550754
1 parent
7326e3a2
fix analysis
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
lib/src/objects/barcode.dart
lib/src/objects/barcode.dart
View file @
6c55075
...
...
@@ -93,7 +93,8 @@ class Barcode {
/// Create a [Barcode] from native data.
Barcode
.
fromNative
(
Map
data
)
:
corners
=
toCorners
(
(
data
[
'corners'
]
as
List
?)?.
cast
<
Map
<
Object
?,
Object
?>>()),
(
data
[
'corners'
]
as
List
?)?.
cast
<
Map
<
Object
?,
Object
?>>(),
),
format
=
toFormat
(
data
[
'format'
]
as
int
),
rawBytes
=
data
[
'rawBytes'
]
as
Uint8List
?,
rawValue
=
data
[
'rawValue'
]
as
String
?,
...
...
Please
register
or
login
to post a comment