LibraryComponentHandle constructor

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

Implementation

LibraryComponentHandle({
  required this.name,
  required this.libraryProjectId,
  required this.componentKey,
  Map<String, DslType>? params,
}) : params = UnmodifiableMapView(
       Map<String, DslType>.from(params ?? const {}),
     );