convert method

  1. @override
String convert(
  1. List<int> src
)
override

Converts input and returns the result of the conversion.

Implementation

@override
String convert(List<int> src)
  => src.map<String>((int se) => String.fromCharCode(se)).join("");