intersection method

  1. @override
EnumSet<SoundCategory> intersection(
  1. EnumSet<SoundCategory> other
)

Implementation

@override
EnumSet<SoundCategory> intersection(EnumSet<SoundCategory> other) =>
    SoundCategoryEnumSet.fromRawValue(this.rawValue & other.rawValue);