isSubclassOf abstract method

bool isSubclassOf(
  1. Class other
)

Checks if this class directly extends another class.

Parameters:

  • other: The potential superclass

Returns:

  • true if this directly extends other
  • false otherwise

See also:

Implementation

bool isSubclassOf(Class other);