Reverse a String.
String backwardsString(String s) { return s.isEmpty ? '' : String.fromCharCodes(backwardsList(s.codeUnits)); }