Skip to content

Commit

Permalink
style: flutter format
Browse files Browse the repository at this point in the history
  • Loading branch information
juliansteenbakker committed Feb 21, 2022
1 parent 810924c commit c44e56e
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion lib/src/objects/barcode.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c44e56e

Please sign in to comment.