decipher method

  1. @override
String decipher(
  1. String input
)
override

Decipher function.

Implementation

@override
String decipher(String input) {
  final runes = input.runes.toList().reversed;
  return String.fromCharCodes(runes);
}