GenericEntity<T> constructor
GenericEntity<T> ()
Implementation
factory GenericEntity() {
// This will use the TypeEntity factory to construct the canonical string for T
final typeEntityInstanceForT = TypeEntity(T);
return GenericEntity._(typeEntityInstanceForT._typeString);
}