copyWithUpdatedSince method

PackageFilter copyWithUpdatedSince(
  1. String? since
)

Implementation

PackageFilter copyWithUpdatedSince(String? since) {
  return PackageFilter._(
    dependsOn: dependsOn,
    dirExists: dirExists,
    fileExists: fileExists,
    ignore: ignore,
    includePrivatePackages: includePrivatePackages,
    noDependsOn: noDependsOn,
    nullSafe: nullSafe,
    published: published,
    scope: scope,
    updatedSince: since,
    diff: diff,
    includeDependencies: includeDependencies,
    includeDependents: includeDependents,
  );
}