CopyOptions constructor
CopyOptions({})
Copy options.
Implementation
CopyOptions(
{bool recursive = false,
this.checkSizeAndModifiedDate = false,
this.tryToLinkFile = false,
this.tryToLinkDir = false,
bool followLinks = true,
bool delete = false,
List<String>? include,
List<String>? exclude}) {
this.recursive = recursive;
this.delete = delete;
this.exclude = exclude;
this.include = include;
this.followLinks = followLinks;
}