encodeInput method

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

encode the input of the channel from bytes

Implementation

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