FollowValueEnumSet.all constructor
FollowValueEnumSet.all()
Implementation
factory FollowValueEnumSet.all() {
final rawValue = FollowValue.values.fold(0, (acc, type) => acc | type.rawValue);
return FollowValueEnumSet(rawValue);
}