ManagedSet<InstanceType extends ManagedObject?>.from constructor

ManagedSet<InstanceType extends ManagedObject?>.from(
  1. Iterable<InstanceType> items
)

Creates a ManagedSet from an Iterable of InstanceTypes.

Implementation

ManagedSet.from(Iterable<InstanceType> items) {
  _innerValues = items.toList();
}