TypeIdentifier constructor

const TypeIdentifier({
  1. required String typeName,
  2. required String packageName,
  3. required String packageRelativeLibraryPath,
})

Implementation

const factory TypeIdentifier({
  /// the name of this type
  required String typeName,

  /// the name of the package defining that type
  required String packageName,

  /// the library path inside the package defining that type
  required String packageRelativeLibraryPath,
}) = _TypeIdentifier;