isGetter abstract method

bool isGetter()

Checks if this method is a getter.

Returns:

  • true if declared with get keyword
  • false otherwise

Note: Getters have no parameters and return a value.

Implementation

bool isGetter();