printThermal method
Implementation
@override
Future<void> printThermal({
required PrintThermalModel printThermalModel,
}) async {
try {
await _channel.invokeMethod(
'print_thermal',
printThermalModel.toJson(),
);
} catch (e) {
print("Error printing thermal: $e");
}
}