isLazyEntityTypeInfo method

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

Alias to isLazyEntityType with a TypeInfo parameter.

Implementation

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