ChooseStartWidget constructor

const ChooseStartWidget({
  1. Key? key,
  2. required MapManager mapManager,
  3. required ItineraryPoint endPoint,
  4. required dynamic onStartingPointSetManuallyChanged(
    1. bool
    ),
  5. dynamic onSetState()?,
})

Implementation

const ChooseStartWidget({
  Key? key,
  required this.mapManager,
  required this.endPoint,
  required this.onStartingPointSetManuallyChanged,
  this.onSetState,
}) : super(key: key);