reverse static method

String reverse(
  1. String value
)

Reverses value.

Implementation

static String reverse(String value) =>
    String.fromCharCodes(value.runes.toList().reversed);