copyNativeToNative static method
Implementation
static File copyNativeToNative({
required String pathIn,
required String pathOut,
required Native fsIn,
required Native fsOut,
}) {
final nPathIn = join(fsIn.root.path, pathIn);
final nPathOut = join(fsOut.root.path, pathOut);
io.File(nPathIn).copySync(nPathOut);
return File(pathOut);
}