entries property

List<LibraryEntry> get entries

The solutions to run: declared libraries, or the single shape.

Implementation

List<LibraryEntry> get entries => libraries.isNotEmpty
    ? libraries
    : [
        LibraryEntry(
          name: library,
          driver: driver,
          driverClass: driverClass,
        ),
      ];