libraries property

The widget libraries imported in this Runtime.

The returned map is an immutable view of the map updated by calls to update and clearLibraries.

The keys are instances LibraryName which encode fully qualified library names, and the values are the corresponding WidgetLibrarys.

The returned map is an immutable copy of the registered libraries at the time of this call.

See also:

Implementation

UnmodifiableMapView<LibraryName, WidgetLibrary> get libraries {
  return UnmodifiableMapView<LibraryName, WidgetLibrary>(Map<LibraryName, WidgetLibrary>.from(_libraries));
}