encodeOutput method

  1. @override
String encodeOutput(
  1. Uint8List data
)
override

encode the output of the channel from bytes

Implementation

@override
String encodeOutput(Uint8List data) {
  return utf8.decode(data);
}