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
Julian Steenbakker
2022-02-21 09:24:16 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c44e56efc96b3727d9eaabd122b8e99ac7600e15
c44e56ef
1 parent
810924c0
style: flutter format
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletions
lib/src/objects/barcode.dart
lib/src/objects/barcode.dart
View file @
c44e56e
...
...
@@ -63,7 +63,21 @@ class Barcode {
/// Gets parsed WiFi AP details.
final
WiFi
?
wifi
;
Barcode
({
this
.
corners
,
this
.
format
=
BarcodeFormat
.
ean13
,
this
.
rawBytes
,
this
.
type
=
BarcodeType
.
text
,
this
.
calendarEvent
,
this
.
contactInfo
,
this
.
driverLicense
,
this
.
email
,
this
.
geoPoint
,
this
.
phone
,
this
.
sms
,
this
.
url
,
this
.
wifi
,
required
this
.
rawValue
});
Barcode
(
{
this
.
corners
,
this
.
format
=
BarcodeFormat
.
ean13
,
this
.
rawBytes
,
this
.
type
=
BarcodeType
.
text
,
this
.
calendarEvent
,
this
.
contactInfo
,
this
.
driverLicense
,
this
.
email
,
this
.
geoPoint
,
this
.
phone
,
this
.
sms
,
this
.
url
,
this
.
wifi
,
required
this
.
rawValue
});
/// Create a [Barcode] from native data.
Barcode
.
fromNative
(
Map
<
dynamic
,
dynamic
>
data
)
...
...
Please
register
or
login
to post a comment