api.dart.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic. Learn more.
Converts input and returns the result of the conversion.
input
String convert(String text) { var val = _convert(text, 0, text.length); return val == null ? text : val; }