lookUpGetter3 abstract method

GetterElement? lookUpGetter3(
  1. String name,
  2. LibraryElement2 library, {
  3. bool concrete = false,
  4. bool inherited = false,
  5. bool recoveryStatic = false,
})

Return the getter with the given name.

If concrete is true, then the concrete implementation is returned, from this type, or its superclass.

If inherited is true, then only getters from the superclass are considered.

If recoveryStatic is true, then static getters of the class, and its superclasses are considered. Clients should not use it.

Implementation

GetterElement? lookUpGetter3(
  String name,
  LibraryElement2 library, {
  bool concrete = false,
  bool inherited = false,
  bool recoveryStatic = false,
});