getIsStatic abstract method

  1. @override
bool getIsStatic()
override

Indicates whether this field is declared as static.

Static fields belong to the enclosing type itself rather than to individual instances. As a result, they must be accessed without an instance reference.

This overrides MemberDeclaration.getIsStatic to enforce field-specific semantics.

Returns

true if the field is static; otherwise, false.

Implementation

@override
bool getIsStatic();