Returns true if the function has modifiers, otherwise returns false
has_modifiers() β bool
Example
from glider import*defquery():# Retrieve a function with name _afterTokenTransfer functions =Functions().with_name('_afterTokenTransfer').exec(1)for function in functions:print(function.has_modifiers())return []