equalsEntityType method

bool equalsEntityType(
  1. TypeInfo? other
)

Implementation

bool equalsEntityType(TypeInfo? other) {
  if (other == null) return false;

  var entityType1 = entityType;
  if (entityType1 == null) return false;

  var entityType2 = other.entityType;

  var eq = entityType1 == entityType2;
  return eq;
}