union method

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

Implementation

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