difference method

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

Implementation

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