copyFile method

Future<bool> copyFile(
  1. String srcFile,
  2. String dstFile, {
  3. int bufferSize = 1024,
})

Implementation

Future<bool> copyFile(String srcFile, String dstFile,
        {int bufferSize = 1024}) =>
    VolumeInfoPlatform.instance
        .copyFile(srcFile, dstFile, bufferSize: bufferSize);