matches method

bool matches(
  1. AssetId id
)

Returns whether or not id mathes this filter.

Implementation

bool matches(AssetId id) =>
    _package.matches(id.package) && _path.matches(id.path);