cReverse property

String cReverse

Reverses the characters in the string.

Implementation

String get cReverse {
  return String.fromCharCodes((this).runes.toList().reversed);
}