staticMembers property

Map<Symbol, MethodMirror> staticMembers

Returns a map of the static methods, getters and setters of the class.

The intent is to capture those members that constitute the API of a class. Hence fields are not included, but the getters and setters implicitly introduced by fields are included.

The map is keyed by the simple names of the members.

Implementation

Map<Symbol, MethodMirror> get staticMembers;