copyWithUpdatedIgnore method

PackageFilter copyWithUpdatedIgnore(
  1. List<Glob> updatedIgnore
)

Implementation

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