libraryComponent method

LibraryComponentHandle libraryComponent(
  1. String name, {
  2. required String libraryProjectId,
  3. required String componentKey,
  4. Map<String, DslType>? params,
})

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,
}) => LibraryComponentHandle(
  name: name,
  libraryProjectId: libraryProjectId,
  componentKey: componentKey,
  params: params,
);