ManagedObjectController<InstanceType extends ManagedObject>.forEntity constructor
Null safety
- ManagedEntity entity,
- ManagedContext context
Creates a new ManagedObjectController without a static type.
This method is used when generating instances of this type dynamically from runtime values, where the static type argument cannot be defined. Behaves just like the unnamed constructor.
Implementation
ManagedObjectController.forEntity(
ManagedEntity entity,
ManagedContext context,
) : super() {
_query = Query.forEntity(entity, context);
}