printBarcode method
Implementation
@override
Future<String?> printBarcode(
List<dynamic> requests, String logicalName, String address) async {
try {
final result = await methodChannel.invokeMethod<String>('printBarcode', {
'requests': requests,
'logicalName': logicalName,
'address': address
});
return result;
} catch (e) {
throw Exception('printBarcode: 출력 중 에러발생: $e');
}
}