sendProtocolCommands method
Send protocol commands to printer (for protocol system)
Implementation
@override
Future<bool> sendProtocolCommands(List<int> commands, String protocolName) async {
final result = await methodChannel.invokeMethod<bool>('sendProtocolCommands', {
'commands': commands,
'protocolName': protocolName,
});
return result ?? false;
}