intersection method

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

Implementation

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