entityObjects<T> method

List<T>? entityObjects<T>(
  1. String key,
  2. EntityBuilder<T> builder
)

Retrieves a list of objects associated with the given key from the entity.

Implementation

List<T>? entityObjects<T>(
  String key,
  EntityBuilder<T> builder,
) {
  return isEntity ? Entity.objects(key, this, builder) : null;
}