reverse property

String get reverse

反转字符串

Implementation

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