Future<String> strUint8List(Uint8List list) async { File file = File.fromRawPath(list); String string = await file.readAsString(); return string; }