difference method

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

Implementation

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