Returns true if the function is constructor, otherwise returns false.
is_constructor() β bool
Example
from glider import*defquery(): functions =Functions().with_name('constructor').exec(1)for function in functions:print(function.is_constructor())return functions