getInheritedConcreteMember abstract method

ExecutableElement2? getInheritedConcreteMember(
  1. Name name
)

Returns the most specific member with the given name that this type inherits from a superclass or mixin.

Returns null if no member is inherited.

This method is semantically equivalent to calling inheritedConcreteMembers and then using the [] operator, but it potentially has better performance, since it does not need to consider all possible inherited names.

Implementation

ExecutableElement2? getInheritedConcreteMember(Name name);