replace method

void replace(
  1. String temporaryPath,
  2. String targetPath
)

Implementation

void replace(String temporaryPath, String targetPath) {
  onEvent?.call(ApplyFileEvent.replace, targetPath);
  File(temporaryPath).renameSync(targetPath);
}