fieldsWithTypeEntity method

Map<String, TypeInfo> fieldsWithTypeEntity([
  1. O? o
])

Implementation

Map<String, TypeInfo> fieldsWithTypeEntity([O? o]) =>
    _fieldsWithTypeEntity ??= fieldsWithType(
        (_, fieldType) =>
            !fieldType.isBasicType &&
            !fieldType.isEntityReferenceListType &&
            !fieldType.isEntityReferenceType &&
            isValidEntityType(fieldType.type),
        o);