findCommands method
Find commands by service and command name.
Implementation
List<NativeCommand> findCommands(String service, String command) {
return sentCommands
.where((c) => c.service == service && c.command == command)
.toList();
}