union method

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

Implementation

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