reverse method
Returns this string reversed by rune.
Implementation
String reverse() =>
this == null ? '' : String.fromCharCodes(this!.runes.toList().reversed);
Returns this string reversed by rune.
String reverse() =>
this == null ? '' : String.fromCharCodes(this!.runes.toList().reversed);