void copyFile(String source, String dest) { File(dest).createSync(); File(dest).writeAsBytesSync(File(source).readAsBytesSync()); }