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.
gs1_barcode_parser #
GS1 Barcode parser
Example #
Parse code-128 with FNC1
final String barcode =
']C101040123456789011715012910ABC1233932971471131030005253922471142127649716';
final parser = GS1BarcodeParser.defaultParser();
final result = parser.parse(barcode);
print(result);
Result
code = GS1-128,
data = {
01 (GTIN): 04012345678901,
17 (USE BY OR EXPIRY): 2015-01-29 00:00:00.000,
10 (BATCH/LOT): ABC123,
3932 (PRICE): 47.11,
3103 (NET WEIGHT (kg)): 0.525,
3922 (PRICE): 47.11,
421 (SHIP TO POST): 49716,
}