ManagedSet<InstanceType extends ManagedObject>.from constructor
Null safety
- Iterable<
InstanceType> items
Creates a ManagedSet from an Iterable of InstanceType
s.
Implementation
ManagedSet.from(Iterable<InstanceType> items) {
_innerValues = items.toList();
}