printLabel method
Implementation
@override
Future<bool> printLabel(String ipAddress, String label) async {
try {
return await methodChannel
.invokeMethod("printLabel", {"printerId": ipAddress, "label": label});
} catch (e) {
print("There is an issue while printing the Label $e");
return false;
}
}