copyFile method
Enqueues a CopyFile copying sourcePath to targetPath.
@param sourcePath Source path. @param targetPath Destination path. @return This installer (chainable).
Implementation
PluginInstaller copyFile({
required String sourcePath,
required String targetPath,
}) {
_ops.add(CopyFile(sourcePath: sourcePath, targetPath: targetPath));
return this;
}