SavedDestinationsDialog constructor

const SavedDestinationsDialog({
  1. Key? key,
  2. required MapController controller,
  3. required dynamic onShowSnackBar(
    1. String
    ),
})

//////////// ////////////

Implementation

// II.B - Constructor
///////////////
const SavedDestinationsDialog({
  super.key,
  required this.controller,
  required this.onShowSnackBar,
});