getAllCommandStr function

String getAllCommandStr()

Implementation

String getAllCommandStr() {
  String error = 'You can use one this command:\n';
  for (var element in commandList) {
    error += ' ✅ ${element.command} \n';
  }
  return error;
}