commandToLowerCase function

String commandToLowerCase(
  1. List args
)

Function of str_low command

Implementation

String commandToLowerCase(List args) {
  final String str = expEval(args[0]);
  return str.toLowerCase();
}