findPackageConfigFile method

  1. @Deprecated('No longer necessary, URI lookups are done via VM Service')
File? findPackageConfigFile(
  1. String possibleRoot
)

Find the package_config.json file for the program being launched.

It is no longer necessary to call this method as the package config file is no longer used. URI lookups are done via the VM Service.

Implementation

@Deprecated('No longer necessary, URI lookups are done via VM Service')
File? findPackageConfigFile(String possibleRoot) {
  // TODO(dantup): Remove this method after Flutter DA is updated not to use
  // it.
  return null;
}