libraryComponent method
Returns a callable handle for a component exported by an attached library dependency.
Implementation
LibraryComponentHandle libraryComponent(
String name, {
required String libraryProjectId,
required String componentKey,
Map<String, DslType>? params,
}) {
_rejectReservedComponentParamNames(name, params);
return LibraryComponentHandle(
name: name,
libraryProjectId: libraryProjectId,
componentKey: componentKey,
params: params,
);
}