union method

  1. @override
EnumSet<Lane> union(
  1. EnumSet<Lane> other
)

Implementation

@override
EnumSet<Lane> union(EnumSet<Lane> other) =>
    LaneEnumSet.fromRawValue(this.rawValue | other.rawValue);