toSet method
Implementation
@override
Set<FollowValue> toSet() {
Set<FollowValue> result = {};
FollowValue.values.forEach((element) {
if (this.contains(element)) {
result.add(element);
}
});
return result;
}
@override
Set<FollowValue> toSet() {
Set<FollowValue> result = {};
FollowValue.values.forEach((element) {
if (this.contains(element)) {
result.add(element);
}
});
return result;
}