reversed property

String get reversed

反转字符串

Implementation

String get reversed {
  return split('').reversed.join();
}