TypeChecker.fromName constructor

const TypeChecker.fromName(
  1. String name, {
  2. String? packageName,
})

Checks that the element has a specific name, and optionally checks that it is defined from a specific package.

This is similar to TypeChecker.fromUrl but does not rely on exactly where the definition of the element comes from. The downside is that if somehow a package exposes two elements with the same name, there could be a conflict.

Implementation

const factory TypeChecker.fromName(
  String name, {
  String? packageName,
}) = _NamedChecker;