From c44e56efc96b3727d9eaabd122b8e99ac7600e15 Mon Sep 17 00:00:00 2001 From: Julian Steenbakker Date: Mon, 21 Feb 2022 09:24:16 +0100 Subject: [PATCH] style: flutter format --- lib/src/objects/barcode.dart | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/lib/src/objects/barcode.dart b/lib/src/objects/barcode.dart index a99c51e63..1125e5a7e 100644 --- a/lib/src/objects/barcode.dart +++ b/lib/src/objects/barcode.dart @@ -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 data)