barcodePrint method
Implementation
@override
Future<PrinterResponse> barcodePrint(BarcodePrint barcodePrint) async {
try {
if (_gertecType == GertecType.gpos700) {
return await _gertecPrinterRepository.barcodePrint(barcodePrint);
}
return await _gertecSK210Repository.barcodePrint(barcodePrint);
} catch (e) {
rethrow;
}
}