convert method
Converts input
and returns the result of the conversion.
Implementation
@override
String convert(final List<int> input){
final StringBuffer buffer = StringBuffer();
for(final int byte in input)
buffer.write(byte.toRadixString(_radix).padLeft(_charactersPerByte, "0"));
return buffer.toString();
}