convert method

String convert(
  1. String source
)

Convert source from the source alphabet to the destination alphabet.

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

Implementation

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