barcodeBytes property

Uint8List barcodeBytes

Implementation

Uint8List get barcodeBytes {
  final base64Decoder = base64.decoder;
  final decodedBytes = base64Decoder.convert(_barcodeBytesString);
  print('_barcodeBytesString:$_barcodeBytesString');
  return decodedBytes;
}