PylonCluster constructor

const PylonCluster({
  1. Key? key,
  2. required List<Pylon> pylons,
  3. required PylonBuilder builder,
})

Constructs a PylonCluster combining the provided pylons under a shared builder.

Requires non-empty pylons of Pylon.data form and a builder function. The key supports widget identity for Flutter's reconciliation.

Implementation

const PylonCluster({super.key, required this.pylons, required this.builder});