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