normalize method

  1. @override
String normalize(
  1. String data
)
override

Returns the barcode string with the correct checksum

Implementation

@override
String normalize(String data) =>
    data.padRight(minLength, '0').substring(0, minLength);