convert method

  1. @override
String convert(
  1. String input
)
override

Converts input and returns the result of the conversion.

Implementation

@override
String convert(String input) {
  return utf8
      .encode(input)
      .map((value) => encodeByte(value) + _sectionSeparator)
      .join();
}