isEagerEntityTypeInfo method

bool isEagerEntityTypeInfo(
  1. TypeInfo entityTypeInfo, [
  2. bool def = false
])

Alias to isEagerEntityType with a TypeInfo parameter.

Implementation

bool isEagerEntityTypeInfo(TypeInfo entityTypeInfo, [bool def = false]) {
  var entityType = entityTypeInfo.entityType;
  return entityType != null ? isEagerEntityType(entityType, def) : false;
}