Showing
1 changed file
with
15 additions
and
1 deletions
| @@ -63,7 +63,21 @@ class Barcode { | @@ -63,7 +63,21 @@ class Barcode { | ||
| 63 | /// Gets parsed WiFi AP details. | 63 | /// Gets parsed WiFi AP details. |
| 64 | final WiFi? wifi; | 64 | final WiFi? wifi; |
| 65 | 65 | ||
| 66 | - 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}); | 66 | + Barcode( |
| 67 | + {this.corners, | ||
| 68 | + this.format = BarcodeFormat.ean13, | ||
| 69 | + this.rawBytes, | ||
| 70 | + this.type = BarcodeType.text, | ||
| 71 | + this.calendarEvent, | ||
| 72 | + this.contactInfo, | ||
| 73 | + this.driverLicense, | ||
| 74 | + this.email, | ||
| 75 | + this.geoPoint, | ||
| 76 | + this.phone, | ||
| 77 | + this.sms, | ||
| 78 | + this.url, | ||
| 79 | + this.wifi, | ||
| 80 | + required this.rawValue}); | ||
| 67 | 81 | ||
| 68 | /// Create a [Barcode] from native data. | 82 | /// Create a [Barcode] from native data. |
| 69 | Barcode.fromNative(Map<dynamic, dynamic> data) | 83 | Barcode.fromNative(Map<dynamic, dynamic> data) |
-
Please register or login to post a comment