CopyOptions constructor

CopyOptions({
  1. bool recursive = false,
  2. bool checkSizeAndModifiedDate = false,
  3. bool tryToLinkFile = false,
  4. bool tryToLinkDir = false,
  5. bool followLinks = true,
  6. bool delete = false,
  7. List<String>? include,
  8. List<String>? exclude,
})

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;
}