union method

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

Implementation

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