union method

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

Implementation

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