BuildingExplorer constructor

const BuildingExplorer({
  1. required BuildingExplorerController buildingExplorerControllerProvider(),
  2. VoidCallback? onClose,
  3. Key? key,
})

Creates a BuildingExplorer widget for use in a widget tree. The constructor requires a BuildingExplorerController and an optional onClose callback.

Implementation

const BuildingExplorer({
  required this.buildingExplorerControllerProvider,
  this.onClose,
  super.key,
});