isClass abstract method
Checks if this class represents a standard class type.
Returns:
true
for regular class declarationsfalse
for other declaration types (mixin, enum, etc.)
Example:
class User {}
Class<User>().isClass(); // true
Implementation
bool isClass();