copyWithUpdatedIgnore method

PackageFilters copyWithUpdatedIgnore(
  1. List<Glob> ignore
)

Implementation

PackageFilters copyWithUpdatedIgnore(List<Glob> ignore) {
  return PackageFilters._(
    dependsOn: dependsOn,
    dirExists: dirExists,
    fileExists: fileExists,
    ignore: ignore,
    includePrivatePackages: includePrivatePackages,
    noDependsOn: noDependsOn,
    nullSafe: nullSafe,
    published: published,
    scope: scope,
    diff: diff,
    includeDependencies: includeDependencies,
    includeDependents: includeDependents,
  );
}