getOutlineRequest method

  1. @override
Future<OutlineRequest> getOutlineRequest(
  1. String path
)
override

Return the outline request that should be passes to the contributors returned from getOutlineContributors.

Throw a RequestFailure if the request could not be created.

Implementation

@override
Future<OutlineRequest> getOutlineRequest(String path) async {
  var result = await getResolvedUnitResult(path);
  return DartOutlineRequestImpl(resourceProvider, result);
}