difference method

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

Implementation

@override
EnumSet<RoadEventDisplayCategory> difference(EnumSet<RoadEventDisplayCategory> other) =>
    RoadEventDisplayCategoryEnumSet.fromRawValue(this.rawValue & ~other.rawValue);