union method

  1. @override
VersionConstraint union(
  1. VersionConstraint other
)
override

Returns a VersionConstraint that allows Versions allowed by either this or other.

Implementation

@override
VersionConstraint union(VersionConstraint other) =>
    VersionConstraint.unionOf([this, other]);