reversed property

String get reversed

Reverse the string

Implementation

String get reversed => split('').reversed.join();