decipher method

String decipher(
  1. String input
)

Implementation

String decipher(String input) {
  for (final operation in operations) {
    input = operation.decipher(input);
  }

  return input;
}