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