licenses property

Stream<LicenseEntry> licenses

Returns the licenses that have been registered.

Generating the list of licenses is expensive.

Implementation

static Stream<LicenseEntry> get licenses async* {
  if (_collectors == null)
    return;
  for (LicenseEntryCollector collector in _collectors)
    yield* collector();
}