findMemberReferences method

Future<FindMemberReferencesResult> findMemberReferences(
  1. String? name
)

Perform a search for references to members whose name is equal to the given name. This search does not check to see that there is a member defined with the given name, so it is able to find references to undefined members as well.

An identifier is returned immediately, and individual results will be returned via the search.results notification as they become available.

Implementation

Future<FindMemberReferencesResult> findMemberReferences(String? name) {
  final Map m = {'name': name};
  return _call('search.findMemberReferences', m)
      .then(FindMemberReferencesResult.parse);
}