revert method

String revert(
  1. String source
)

Convert source from the destination alphabet to the source alphabet.

Returns a String where source has been converted from destinationAlphabet to sourceAlphabet.

Implementation

String revert(String source) {
  return _convert(source, destinationAlphabet, sourceAlphabet);
}