gs1_barcode_parser 1.1.0 gs1_barcode_parser: ^1.1.0 copied to clipboard
The barcode parser is a library for handling the contents of GS1 barcodes.
import 'package:gs1_barcode_parser/gs1_barcode_parser.dart';
main() {
final String barcode =
']C101040123456789011715012910ABC1233932971471131030005253922471142127649716';
final parser = GS1BarcodeParser.defaultParser();
final result = parser.parse(barcode);
print(result);
}