convert method

String convert (String text)

Converts input and returns the result of the conversion.

Implementation

String convert(String text) {
  var val = _convert(text, 0, text.length);
  return val == null ? text : val;
}