allowsAny method

  1. @override
bool allowsAny(
  1. VersionConstraint other
)

Returns true if this constraint allows any of the versions that other allows.

Implementation

@override
bool allowsAny(VersionConstraint other) => other.allows(this);