reversed property

String get reversed

Reverses the string

Implementation

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