reverse property

String get reverse

Reverses the entire string.

Implementation

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