textDecoder function

String textDecoder(
  1. Uint8List value
)

Implementation

String textDecoder(Uint8List value) {
  return value.fold('', (p, e) => p += String.fromCharCode(e));
}