static void tempWrite(Uint8List data, {String ext = ".tmp"}) { File f = tempFile(ext: ext); f.writeAsBytesSync(data, flush: true); }