isStatic property

  1. @override
bool get isStatic
override

A function is considered non-static iff it is permited to refer to 'this'.

Note that generative constructors are considered non-static, whereas factory constructors are considered static.

Required capabilities: isStatic does not require any capabilities.

Implementation

@override
bool get isStatic => (_descriptor & constants.staticAttribute != 0);