Skip to content

Commit ec0b807

Browse files
refactor: barcode code to non nullable
1 parent 9f7eaec commit ec0b807

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/src/types/barcode.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import 'barcode_format.dart';
88
class Barcode {
99
Barcode(this.code, this.format, this.rawBytes);
1010

11-
final String? code;
11+
final String code;
1212
final BarcodeFormat format;
1313

1414
/// Raw bytes are only supported by Android.

0 commit comments

Comments
 (0)